On your section that has the checkboxes select them all in design view, in the TAG property put in "REQ" or something similar.
On your button click you can then have something like:
Code:
dim ctl as control
dim iTotAnswered as long
for each ctl in me.controls 'this cycles through every control on the form, if you're using a tabbed form you can lock it down to a specific tab of the tab control
if instr(ctl.tag, "REQ") > 0 then
if ctl.value = -1 then
iTotAnswered = iTotAnswered + 1
endif
endif
next ctl
if iTotAnswered = 0 then
msgbox "HEY DUMMY FILL OUT A RESPONSIBLE PARTY", vbokonly, "DUMMY WARNING"
exit sub
endif
'leave your other code here
this way if you ever add/remove stations all you have to do is make sure the checkbox has it's TAG property set and you're good.