Hi,

I am having a small issue in a code. I have the following loop:

Dim I As Integer
If ComboBox.Value = "Paid" Then
For I = 1 To 3
Label& I.Visible = False
Next I
End if
I have three labels (Label1, Label2 and Label3).

My issue is in joining Label with the I of the loop !

Thank you for your help,

Charles