#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Scroll bar

Can I add scroll bar to a worksheet and links it to a list of data. If I
have two cells A1 ( amount ) and B1 ( rate ). I want to calculate the
product in C1, =A1*B1. In A1, I will put the amount. I want a scroll bar
connected to B1 with a list of rates that I can move up & down. The product (
C1 ) will change while I am moving the scroll bar. Is it possible ????
Thank you

Mustafa Al-Khars
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,480
Default Scroll bar

Hi

You could add a Data Validation to cell B1 which would show a list of
values, but until you had selected the value, the entry in C1 would not
reflect the change.

--
Regards
Roger Govier



"MJK700i" wrote in message
...
Can I add scroll bar to a worksheet and links it to a list of data. If I
have two cells A1 ( amount ) and B1 ( rate ). I want to calculate the
product in C1, =A1*B1. In A1, I will put the amount. I want a scroll bar
connected to B1 with a list of rates that I can move up & down. The
product (
C1 ) will change while I am moving the scroll bar. Is it possible ????
Thank you

Mustafa Al-Khars



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 373
Default Scroll bar

Or, you could use a spinner control. Right-click on the toolbar and select
Control Toolbox. Click on the spinner control, then click where you want it
on the screen. Right-click on the spinner, select View Code, and paste this
code in there. Not exactly a scrollbar, but it will continue to spin when
you select up or down, as long as you keep the mouse button down. HTH,
James

Private Sub SpinButton1_SpinUp()
If [b1] < 1 Then
[b1] = [b1] + 0.01
Else
[b1] = 0
End If
End Sub

Private Sub SpinButton1_SpinDown()
If [b1] 0 Then
[b1] = [b1] - 0.01
Else
[b1] = 1
End If
End Sub


"Roger Govier" <rogerattechnology4NOSPAMu.co.uk wrote in message
...
Hi

You could add a Data Validation to cell B1 which would show a list of
values, but until you had selected the value, the entry in C1 would not
reflect the change.

--
Regards
Roger Govier



"MJK700i" wrote in message
...
Can I add scroll bar to a worksheet and links it to a list of data. If I
have two cells A1 ( amount ) and B1 ( rate ). I want to calculate the
product in C1, =A1*B1. In A1, I will put the amount. I want a scroll bar
connected to B1 with a list of rates that I can move up & down. The
product (
C1 ) will change while I am moving the scroll bar. Is it possible ????
Thank you

Mustafa Al-Khars





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Scroll bar (control) doesn't scroll!! ??? worksfire1 Excel Worksheet Functions 2 June 28th 07 02:18 PM
Scroll bar control doesn't scroll !! ??? worksfire1 Setting up and Configuration of Excel 0 June 27th 07 07:52 PM
adding scroll bar to scroll on cell's content? Rotem Charts and Charting in Excel 0 November 16th 06 12:36 PM
Scroll horizontaly with mouse, create same system used to scroll . frederic New Users to Excel 5 October 9th 05 08:15 PM
Scroll the screen view with the scroll bar avbs Excel Discussion (Misc queries) 1 June 25th 05 04:43 PM


All times are GMT +1. The time now is 05:31 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"