The code the same thing when checked
When a checked is then unchecked it does something different.
I'm just drawing a blank on how to capture. Here is a small sample, but I don't want to have to do this for every sheet and every checkbox
Code:
Option Explicit
Public SRC As String
Private Sub CheckBox1_Click()
SRC = ActiveSheet.CodeName & "." & Right(CheckBox1.Name, Len(CheckBox1.Name) - 8)
If Range("[B][COLOR="#FF0000"]E3[/COLOR][/B]") = True Then
Range("[B][COLOR="#FF0000"]I3[/COLOR][/B]") = SRC
Call Chkbx
End If
If Range("[B][COLOR="#FF0000"]E3[/COLOR][/B]") = False Then
Range("[B][COLOR="#FF0000"]I3[/COLOR][/B]").Clear
Call RemoveLine
End If
End Sub