Thread: CHECKBOX HELP
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] lecoughlin@gmail.com is offline
external usenet poster
 
Posts: 8
Default CHECKBOX HELP

I have a document with a series of checkboxes, checkbox1-20.

I am trying to write code that will go through these checkboxes, and
if they are checked, output a "1" to another file. Can anyone help me
write this code? I tried:

If checkbox1.Checked = true Then
Workbooks("wb1").Worksheets("data").cells(1,1) = 1

This doesn't appear to be working.

Thanks.