The following code works fine
However this doesnt
Yet if I turn on MsgBox(RaRound) it returns 2????
Code:
Dim RaRound
Dim I
RaRound = DCount("[Initials]", "Inbound", "[Initials] = [Forms]![Inbound]![Initials]")
'MsgBox (RaRound)
For I = 1 To 2'Len(RaRound)
MsgBox (I)
Next I
However this doesnt
Code:
Dim RaRound
Dim I
RaRound = DCount("[Initials]", "Inbound", "[Initials] = [Forms]![Inbound]![Initials]")
'MsgBox (RaRound)
For I = 1 To Len(RaRound)
MsgBox (I)
Next I
Yet if I turn on MsgBox(RaRound) it returns 2????