Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
ryan_dude
 
Posts: n/a
Default Creating Buttons to navigate and drop down menus

Hi
I need to create buttons so i can navigate from one sheet to the other
inside a workbook, is there some kind of form tool to do this with?

Also i need to create a drop down menu, again a form tool??

Many Thanks in advanced,
Ryan
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Ron de Bruin
 
Posts: n/a
Default Creating Buttons to navigate and drop down menus

Hi Ryan

Maybe ?

Ctrl Page Up and Ctrl Page Down

Also i need to create a drop down menu, again a form tool??

right click on the arrows on the left of your first tab

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan_dude" wrote in message ...
Hi
I need to create buttons so i can navigate from one sheet to the other
inside a workbook, is there some kind of form tool to do this with?

Also i need to create a drop down menu, again a form tool??

Many Thanks in advanced,
Ryan



  #3   Report Post  
Posted to microsoft.public.excel.newusers
Ron de Bruin
 
Posts: n/a
Default Creating Buttons to navigate and drop down menus

You can also insert a hyperlink if you want

Insert Hyperlink
Place in the document

--
Regards Ron de Bruin
http://www.rondebruin.nl


"Ron de Bruin" wrote in message ...
Hi Ryan

Maybe ?

Ctrl Page Up and Ctrl Page Down

Also i need to create a drop down menu, again a form tool??

right click on the arrows on the left of your first tab

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan_dude" wrote in message ...
Hi
I need to create buttons so i can navigate from one sheet to the other
inside a workbook, is there some kind of form tool to do this with?

Also i need to create a drop down menu, again a form tool??

Many Thanks in advanced,
Ryan





  #4   Report Post  
Posted to microsoft.public.excel.newusers
ryan_dude
 
Posts: n/a
Default Creating Buttons to navigate and drop down menus

No i mean i need actual buttons, like a website on the excel page to navigate
throughout the workbook.
Any Ideas?

Thanks

"Ron de Bruin" wrote:

Hi Ryan

Maybe ?

Ctrl Page Up and Ctrl Page Down

Also i need to create a drop down menu, again a form tool??

right click on the arrows on the left of your first tab

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan_dude" wrote in message ...
Hi
I need to create buttons so i can navigate from one sheet to the other
inside a workbook, is there some kind of form tool to do this with?

Also i need to create a drop down menu, again a form tool??

Many Thanks in advanced,
Ryan




  #5   Report Post  
Posted to microsoft.public.excel.newusers
ryan_dude
 
Posts: n/a
Default Creating Buttons to navigate and drop down menus

Thanks that could work, what about making it look like a standard square,
grey button with the page text inside.
Also any ideas on the drop down menu?
Thanks
Ryan
"Ron de Bruin" wrote:

You can also insert a hyperlink if you want

Insert Hyperlink
Place in the document

--
Regards Ron de Bruin
http://www.rondebruin.nl


"Ron de Bruin" wrote in message ...
Hi Ryan

Maybe ?

Ctrl Page Up and Ctrl Page Down

Also i need to create a drop down menu, again a form tool??

right click on the arrows on the left of your first tab

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan_dude" wrote in message ...
Hi
I need to create buttons so i can navigate from one sheet to the other
inside a workbook, is there some kind of form tool to do this with?

Also i need to create a drop down menu, again a form tool??

Many Thanks in advanced,
Ryan








  #6   Report Post  
Posted to microsoft.public.excel.newusers
Ron de Bruin
 
Posts: n/a
Default Creating Buttons to navigate and drop down menus

You can add a button from the forms toolbar and assign a macro like this

ActiveSheet.Previous.Select

ActiveSheet.Next.Select



--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan_dude" wrote in message ...
No i mean i need actual buttons, like a website on the excel page to navigate
throughout the workbook.
Any Ideas?

Thanks

"Ron de Bruin" wrote:

Hi Ryan

Maybe ?

Ctrl Page Up and Ctrl Page Down

Also i need to create a drop down menu, again a form tool??

right click on the arrows on the left of your first tab

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan_dude" wrote in message ...
Hi
I need to create buttons so i can navigate from one sheet to the other
inside a workbook, is there some kind of form tool to do this with?

Also i need to create a drop down menu, again a form tool??

Many Thanks in advanced,
Ryan






  #7   Report Post  
Posted to microsoft.public.excel.newusers
Ron de Bruin
 
Posts: n/a
Default Creating Buttons to navigate and drop down menus

You need VBA to create a Dropdown with sheets in your workbook
Do you want that ?

Don't you like the right click on the arrows

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan_dude" wrote in message ...
Thanks that could work, what about making it look like a standard square,
grey button with the page text inside.
Also any ideas on the drop down menu?
Thanks
Ryan
"Ron de Bruin" wrote:

You can also insert a hyperlink if you want

Insert Hyperlink
Place in the document

--
Regards Ron de Bruin
http://www.rondebruin.nl


"Ron de Bruin" wrote in message ...
Hi Ryan

Maybe ?

Ctrl Page Up and Ctrl Page Down

Also i need to create a drop down menu, again a form tool??
right click on the arrows on the left of your first tab

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan_dude" wrote in message ...
Hi
I need to create buttons so i can navigate from one sheet to the other
inside a workbook, is there some kind of form tool to do this with?

Also i need to create a drop down menu, again a form tool??

Many Thanks in advanced,
Ryan







  #8   Report Post  
Posted to microsoft.public.excel.newusers
ufo_pilot
 
Posts: n/a
Default Creating Buttons to navigate and drop down menus

Type the list of valid entries in a single column (this column can be hidden,
if desired).
Select the cell or cells that will display the list of entries, choose Data
- Validation, and select the Settings tab.
From the Allow drop-down list, select List. In the Source box, enter a range
address or a reference to the items in your sheet.
Make sure the In-cell dropdown box is selected. This technique does not
require any macros.
You can download ' Andrew's Utilities, besides the Worksheet index - there
are a whole lot of great features you can use in Excel.

http://www.andrewsexceltips.com/tips.htm

To create a worksheet index - from Andrews Utilities


Sub WorksheetIndex()
On Error GoTo Terminator
Dim ws As Worksheet, wsIndex As Worksheet
Dim myRow As Long
Call SetCalcSetting
Set wsIndex = ActiveWorkbook.Worksheets.Add _
(Befo=ActiveWorkbook.Sheets(1))
wsIndex.Name = "Sheet Index"
Range("A1") = "Sheet Index"
ActiveWorkbook.Names.Add Name:="Sheet_Index", RefersToR1C1:= _
"='Sheet Index'!R1C1"
ActiveCell.Font.Bold = True
myRow = 3
For Each ws In ActiveWorkbook.Worksheets
If ws.Name < wsIndex.Name Then
wsIndex.Hyperlinks.Add _
anchor:=wsIndex.Cells(myRow, 1), _
Address:="", _
SubAddress:=ws.Name & "!A1", _
TextToDisplay:=ws.Name
myRow = myRow + 1
End If
Next
wsIndex.Columns("A:A").EntireColumn.AutoFit
Call SetCalcSetting("Restore")
Exit Sub
Terminator: MsgBox "Sorry, there seems to be a problem... " & vbCrLf
& _
"Perhaps the Sheet Index already exists? ",
vbExclamation, "Create Worksheet Index"
Call SetCalcSetting("Restore")
End Sub


"ryan_dude" wrote:

No i mean i need actual buttons, like a website on the excel page to navigate
throughout the workbook.
Any Ideas?

Thanks

"Ron de Bruin" wrote:

Hi Ryan

Maybe ?

Ctrl Page Up and Ctrl Page Down

Also i need to create a drop down menu, again a form tool??

right click on the arrows on the left of your first tab

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ryan_dude" wrote in message ...
Hi
I need to create buttons so i can navigate from one sheet to the other
inside a workbook, is there some kind of form tool to do this with?

Also i need to create a drop down menu, again a form tool??

Many Thanks in advanced,
Ryan




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
Creating navigation buttons on a worksheet ryan_dude New Users to Excel 2 December 20th 05 05:15 PM
Can I use a drop down list to navigate to other spreadsheets djp Excel Worksheet Functions 3 December 7th 05 01:17 PM


All times are GMT +1. The time now is 02:42 PM.

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"