P
Polar cub
I have a 120 check boxes on an Excel worksheet and I don't want to have 120
sets of code to process each. I tried some code that I used to process check
boxes on a form. Is there a way to get this type of logic to work with the
check boxes on an Excel worksheet, it isn't recognizing the
Me(TextControl).Value :
Dim TextControl as string
Dim I as integer
For I = 1 To 120
TextControl = "ChkNum" & Format$(I)
If Me(TextControl).Value = True Then
Call MoveBrandRec(I)
End If
Next I
sets of code to process each. I tried some code that I used to process check
boxes on a form. Is there a way to get this type of logic to work with the
check boxes on an Excel worksheet, it isn't recognizing the
Me(TextControl).Value :
Dim TextControl as string
Dim I as integer
For I = 1 To 120
TextControl = "ChkNum" & Format$(I)
If Me(TextControl).Value = True Then
Call MoveBrandRec(I)
End If
Next I