4

I have check box in my xls sheet. How can i find if these are checked or not via macro. I have created these checkbox manually from Forrm Controller.

Thanks, Mona

user1666075
  • 41
  • 1
  • 1
  • 4

1 Answers1

6
if CheckBox1.Value = true then
    'your code
end if
Math4123
  • 1,267
  • 4
  • 12
  • 23