checkboxes

  • Thread starter Thread starter mrs
  • Start date Start date
mrs said:
How do you check and uncheck a checkbox with VBA?

Thanks

Matt

Dear Matt,

Use

<checkboxname>.Value = True

to check, and

<checkboxname>.Value = False

to uncheck.

Cheers,

Dootje
(e-mail address removed)
 
Back
Top