I have a question about the If command.
For x = 2 To 8
If ComboBox1.ListCount < 7 Then ComboBox1.AddItem Cells(x, 13).Value
Next x'
Why does this work without errors? There is no End if statement. I don't know if this matters, but this code is in the UserForm_Activate () procedure.
Thanks for the help.
source
share