• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Is there any chance of Microsoft improving “Scroll Bar” option in future version

ThrottleWorks

Excel Ninja
Hi,

Today I was working with “Scroll Bar”. Developer, Insert, Form Control, Scroll Bar.

I wanted the Scroll Bar value should start with number 41628 (number value of today’s date), since the maximum value accepted is 30,000 only I could not go further.

Not that I did not know these limitations of Scroll Bar but never used this function beyond 30,000 data point earlier.

Wouldn’t it be great if MS does following changes in the Scroll Bar.

1) Remove limitations for minimum and maximum value

2) Allow decimals also, at present it allows whole number only

3) Just as we have a Cell link for output, we should have cell links for input also, this will help to use formulas for generating minimum and maximum number

I think we could do it with VBA, not sure about it, but if we could get a improved Scroll Bar it will be much easier.

I was trying to post this in existing appropriate thread only, but could not find any, hence posting as a new thread.

Have a happy holiday season !
 

Attachments

  • ScrollBar.xls
    39 KB · Views: 4
@crouchsw , thanks for the suggestion.

I tried that, but it did not work perfectly.

I am not using Scroll Bar for the problem now, posted this as an observation.

Have a nice holiday season :)
 
Last edited:
You link the scroll bar to a cell
Then use that value and scale it accordingly
eg:
Say you want values between 1,000,000 and 2,000,000 with decimals
I would use two scroll bars
a single digit on the first scroll bar will increment by 33
and a Formula like
=MinV+((MaxV-MinV)*(SB#1/30000))

Then use the second scroll bar to increment between 0 and 33 which will include decimals
using: =(SB#2/30000)*((MaxV-MinV)/(30000))

Have a look at the example attached:
 

Attachments

  • Scroll bars.xlsx
    11.3 KB · Views: 14
Last edited:
@Hui Sir, thanks a lot, I also tried using combinations of 2 Bars, but could not go further.

I am trying your solution, will edit it according to my values.

Will share the results ASAP.

Sir, have a nice holiday season :)

P.S. - For a moment I was checking MINV as a function. :D
 
Back
Top