Hi Everyone,
I have checkboxes on vba form and a Sheet as "Sheet3". What I want is, when the user checks any of the checkbox on form I want to copy that string and paste it in column A of Sheet3 and column B should be marked as "X"
I am using the below code but it fails
Code:
For Each ctl In frmEqpDetails.MultiPage1.Pages(0).Controls
If ctl.Value = True Then
Sheets("Testing_Sheet").Find(test_info(eqp_count - 1).vis_tests(looper), LookIn:=xlValues) = "X"
End If
looper = looper + 1
Next
Please advise.