Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Anthony
 
Posts: n/a
Default create dropdown menu

Hi,
can anybody advise (or direct me to basic creation site) where I can create
a dropdown menu in excel.

the menu will hold seveal options ie Food, Drink, Price etc and I want the
user to be able to select one of the options and once chosen a specific excel
worksheet will be opened for this topic.

thanks

Anthony
  #2   Report Post  
JulieD
 
Posts: n/a
Default

Hi Anthony

by drop down menu do you mean one like File / Edit / View on the menu bar or
in a cell in a workbook.

If you want the file / edit / view type probably the easiest way to it is to
record a different macro opening each of the specific workbooks and then use
view / toolbars / customise to drag a new menu item onto the toolbar, and
then drag one for each item and assign the appropriate macro to it.

if you want a drop down list in a cell - you could use data validation to
create the drop down (check out
http://www.contextures.com/xlDataVal01.html ) and then use a
worksheet_change event to open the appropriate book, e.g.

Private Sub Worksheet_Change(ByVal Target As Range)

If Target.Address = "$E$4" And Target.Value < "" Then
Select Case Target.Value
Case "food"
Workbooks.Open Filename:="C:\My Documents\food.xls"
Case "drink"
Workbooks.Open Filename:="C:\My Documents\drink.xls"
Case "price"
Workbooks.Open Filename:="C:\My Documents\price.xls"
End Select
End If
End Sub

---

Hope this helps, please post back if you require further information.

Cheers
JulieD


"Anthony" wrote in message
...
Hi,
can anybody advise (or direct me to basic creation site) where I can
create
a dropdown menu in excel.

the menu will hold seveal options ie Food, Drink, Price etc and I want the
user to be able to select one of the options and once chosen a specific
excel
worksheet will be opened for this topic.

thanks

Anthony



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
Dropdown menu ghost1967 Excel Worksheet Functions 5 January 12th 05 03:57 AM
Menu items added with menu item editor in older versions Michael Hoffmann Excel Discussion (Misc queries) 2 January 7th 05 01:40 PM
How do I create a pivot table if the pivot table icon or menu ite. Lynn@WS Charts and Charting in Excel 1 December 16th 04 02:36 AM
how do I create a drop down menu in Excell? timberwolf7474 Excel Worksheet Functions 1 November 25th 04 11:18 PM
how do i create drop down menu in excel ezeflier Excel Worksheet Functions 2 November 5th 04 02:39 PM


All times are GMT +1. The time now is 05:12 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"