View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
JRForm JRForm is offline
external usenet poster
 
Posts: 130
Default Validation code when using File + Send to

You could do this:
If Chkbx1 then
'okay to prcess
else
if Chkbx2 then
'okay to process
else
if Chkbx3 then

else
all the way to Chkbx6 (checkbox 6)

"Tammy H" wrote:

Hi All,
I need to vaildate 6 checkboxes when the user clicks File + Send to . I
need to verify that at least 1 of the 6 checkboxes is checked.