Hello, Im still very new to excel and been testing alot of diffrent stuff.
But right now ive been thinking about this simple little vba-code
Private Sub CheckBox1_Click()
If CheckBox1.Value = True Then
Columns("fj:fs").Hidden = False
End If
If CheckBox1.Value = False Then
Columns("fj:fs").Hidden = True
End If
End Sub
Is it possible to lock it to the columns title name instead of the fj:fs .
because if you change the amount of columns inn the group you need to edit it again.
Is there a way to fix this little problem. so you can move them around and add/remove amount of columns without editing every time ?
But right now ive been thinking about this simple little vba-code
Private Sub CheckBox1_Click()
If CheckBox1.Value = True Then
Columns("fj:fs").Hidden = False
End If
If CheckBox1.Value = False Then
Columns("fj:fs").Hidden = True
End If
End Sub
Is it possible to lock it to the columns title name instead of the fj:fs .
because if you change the amount of columns inn the group you need to edit it again.
Is there a way to fix this little problem. so you can move them around and add/remove amount of columns without editing every time ?