Uhhh...Fairly simple question, I just can't figure it out. I have this for loop where the first line is something along the lines of
For Each MyCharacter in Me![MyComboBox].Length
Only the Me![MyComboBox].Length is invalid syntax (there's no .length function). What's the correct way to reference a form field's length in a for loop?
For Each MyCharacter in Me![MyComboBox].Length
Only the Me![MyComboBox].Length is invalid syntax (there's no .length function). What's the correct way to reference a form field's length in a for loop?