Excel Checkbox.jpg
I'm trying to Hide and Unhide entire rows based on checkbox. I have my macro which calls on two other macros and it works fine but I would like to have a checkbox for each individual row (150 total). Is there a way to create multiple checkboxes and change the macro so it references the row that the checkbox resides in or do I have to create a macro for each individual row ... Surely Not ..... Thanks in advance
Sub Checkbox()
If Range("A2").Value = "True" Then
Call Hide
ElseIf Range("A2").Value = "False" Then
Call Unhide
Else
Return
End If
End Sub
Bookmarks