Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a scroll bar connected to a cell which changes the dollar value shown
in the cell. The problem is it only shows dollars and 00 cents. Is there a way to change the properties of the bar to change by the penny, not just by the dollar? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How about adding another helper cell that divides the linked cell by 100. (Then
hide the linked cell.) Doug wrote: I have a scroll bar connected to a cell which changes the dollar value shown in the cell. The problem is it only shows dollars and 00 cents. Is there a way to change the properties of the bar to change by the penny, not just by the dollar? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you divide 1000 by 100 you still don't have any decimals. I created 2
scroll bars, 1 for dallars, 1 for cents. For cents I set the max at 99 and divided that by 100. Now I add the 2 cells to get a total. This works but it means using 2 scroll bars. I was hoping to do it with one scroll bar. "Dave Peterson" wrote: How about adding another helper cell that divides the linked cell by 100. (Then hide the linked cell.) Doug wrote: I have a scroll bar connected to a cell which changes the dollar value shown in the cell. The problem is it only shows dollars and 00 cents. Is there a way to change the properties of the bar to change by the penny, not just by the dollar? -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Format the cell with the divided by formula to show 2 decimal places.
Say you want 0.00 to 10.00 Then set the limits for the scroll bar to 0 and 1000. Then use =a1/100 and format that cell to 2 decimal places. (a1 is the linked cell that will show between 0 and 1000). Doug wrote: If you divide 1000 by 100 you still don't have any decimals. I created 2 scroll bars, 1 for dallars, 1 for cents. For cents I set the max at 99 and divided that by 100. Now I add the 2 cells to get a total. This works but it means using 2 scroll bars. I was hoping to do it with one scroll bar. "Dave Peterson" wrote: How about adding another helper cell that divides the linked cell by 100. (Then hide the linked cell.) Doug wrote: I have a scroll bar connected to a cell which changes the dollar value shown in the cell. The problem is it only shows dollars and 00 cents. Is there a way to change the properties of the bar to change by the penny, not just by the dollar? -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Live Currency Conversion US Dollars to Australian Dollars | Excel Discussion (Misc queries) | |||
Dollars v. Dates | Charts and Charting in Excel | |||
scrollbar reslut makes another scrollbar to show | Excel Discussion (Misc queries) | |||
converting #dollars into word dollars? | Excel Worksheet Functions | |||
Changing a scrollbar value to 0 | Excel Programming |