I'm trying to get data from one of 5 form fields through a loop but i'm having trouble accessing the field with the variable
"Select Case [Forms]![Comparison]!Run" isn't isn't working how do i use a variable in a field call?
Code:
Dim Count As Integer
Count = [Forms]![Comparison]![Count]
Dim Run As Integer
Run = 0
Do Until Run = Count
Run=Run+1
Select Case [Forms]![Comparison]!Run
...
Loop