Hello buddy's
xD at this moment i a little stock on excel
i have a checkbox that called "Wedstrijdgroep" ( sorry dutch name in english is it : "Matchgroup" )
i wanne make a group a cell ( B24 : B28 )
there ar numbers in it ect
but if my checkbox Matchgroup is not checked
must it be hidden so i use ;;;
and is it checked it must be visible
so i tried it in a macro, but somereason it dont works

can somebody help me?
here is the code :
Sub macro1()
'
'
If Wedstrijdgroep = True Then
Range("B24:B28").Select
Selection.NumberFormat = "General"
Else: Range("B24:B28").Select
Selection.NumberFormat = ";;;"
End If
End Subthx for the help!
Frederik
W4tc