Well basically when that box is clicked (you need to check for checked or unchecked) you just either run a macro or VBA to set all the other boxes, one at a time.
In VBA it would be
Me.MyChkBox1.value = TRUE
Me.MyChkBox2.value = TRUE
Etc.
True checks them, false unchecks them.