I have a spreadsheet with several checkboxes and 1 hidden cell. When the cell gets a number keyed in, I need a macro to turn on one of the checkboxes, based on the number.
I assume this is simple, but I'm not a VB/VBA guy. Many thanks for any who can help!
macro Pseudocode:
Sub cellr3c21_Change()
if mycellvalue == 1 then checkbox1.clicked = yes.
if mycellvalue == 2 then checkbox2.clicked = yes.
if mycellvalue == 3 then checkbox3.clicked = yes.
etc......
End Sub
I assume this is simple, but I'm not a VB/VBA guy. Many thanks for any who can help!
macro Pseudocode:
Sub cellr3c21_Change()
if mycellvalue == 1 then checkbox1.clicked = yes.
if mycellvalue == 2 then checkbox2.clicked = yes.
if mycellvalue == 3 then checkbox3.clicked = yes.
etc......
End Sub