Re: Excel - UserForm Input
How do you get the checkbox to open the form?
Can you pass the form a global variable or two with the last cell used?
Or perhaps pass the form via a global variable the actual checkbox?
If you get the checkbox, are there properties of the checkbox of cell location??
Re: Excel - UserForm Input
I didnt think it was that hard.
Code:
Sub CheckBox1_Click()
If Sheet1.CheckBoxes(1).Value = Checked Then
UserForm1.Show
End If
I got to CheckBox1_Click by doing 'assign macro' and clicking 'New'.
I'm not a very experienced programmer. Global Variable?
Probably Obvious
Re: Excel - UserForm Input
Thanks, i got it now. Thanks for your help
Nick