asked on
m=0
n=0
f=0
For m=0 To ubound(arrAllUsers,2)
For n=0 To ubound(arrUserList)
If arrAllUsers(1,m) = arrUserList(n) Then
'We have a match.
wscript.Echo "Match: " & arrAllUsers(1,m)
'Getting the error here...
arrFinalList(f) = arrAllUsers(m)
f=f+1
End If
Next
Next