> I want to change the value in a cell from 1 to 10 in steps of 0.5 by
> using a spin button. After placing the spin button, I Ctrl-click the
[quoted text clipped - 8 lines]
>
> Any simple solution? Guess I have to add some VBA code.
Yes, the SmallChange property of a spinbutton control requires a long
integer, so fractional changes aren't allowed.
One could use VBA, but it would be simpler to use a "helper cell".
For instance, say you want your spinner to increment cell A1. Link the
spinner to an out of the way cell, say Z1, with minimum = 2, maximum =
20 and increment by 1. Then in A1 enter
=Z1/2
For aesthetics, you could hide column Z. Or you could put the linked
cell on another sheet, and hide that sheet.
Rob - 28 Jul 2005 15:21 GMT
>>I want to change the value in a cell from 1 to 10 in steps of 0.5 by
>>using a spin button. After placing the spin button, I Ctrl-click the
[quoted text clipped - 22 lines]
> For aesthetics, you could hide column Z. Or you could put the linked
> cell on another sheet, and hide that sheet.
Thanks for your quick response, got it working in my worksheet.
Thanks again.
Robert