Spin Buttons are too Slow For Use

A

adambush4242

I've been trying to use spin buttons in a large workbook I've created but
I've found that they take too long to use. I'm currently using them to
increase or decrease a starting number by .005. Using the buttons in this
manners requires 3 or 4 linked cells. I think this is why the buttons are
running so slow but I'm not sure. Is there any way to get around this?
Otherwise, is there another button type that will fit my needs?

Thanks

Adam Bush
 
M

Mark Lincoln

I've been trying to use spin buttons in a large workbook I've created but
I've found that they take too long to use. I'm currently using them to
increase or decrease a starting number by .005. Using the buttons in this
manners requires 3 or 4 linked cells. I think this is why the buttons are
running so slow but I'm not sure. Is there any way to get around this?
Otherwise, is there another button type that will fit my needs?

Thanks

Adam Bush

Adam,

For this kind of thing, I usually use a couple of command buttons, Inc
(for Increment or Increase) and Dec (for Decrement or Decrease) and
assign macros to each according to my needs. As an example:

Sub GoUp
Range("A1").Value = Range("A1").Value + .005
End Sub

Sub GoDown
Range("A1").Value = Range("A1").Value - .005
End Sub

Mark Lincoln
 

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