Reset Spin Button

S

stewdizzle

I am creating a "What If" worksheet to show my employees the impact new
member signups has on our overall percentages. This involves a spin
button to increase or decrease the number of signups. Is there a way,
macro or otherwise, i can have a button to reset the value of the spin
button to 0.
 
J

jeff.j.griffith

Set the spin button's value to zero from any method. If you want it to
be kicked off by a button click, put the line of code (i.e.
SpinButton1.Value = 0) in the Click event of the command button.
 
S

stewdizzle

Thanks Jeff did exactly what i wanted to do.

Set the spin button's value to zero from any method. If you want it to
be kicked off by a button click, put the line of code (i.e.
SpinButton1.Value = 0) in the Click event of the command button.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top