Hi
I have this query:
instead of having to show the values in message box, I would like to get the results saved into an array. How to do that?Code:Set rs2 = CurrentDb.OpenRecordset("SELECT userID from users where score = " & thescore) While Not rs2.EOF MsgBox (rs2!UserID) rs2.MoveNext Wend