#1   Report Post  
Posted to microsoft.public.excel.misc
John Dean
 
Posts: n/a
Default Regularly used files

Is there any equivalent in Excel to the "Work" menu in Word in the "Built in
Menus" option in the Customise dialogue?
I'd like to be able to attach some worksheets I use regularly to the menu so
I can open them with one click, as you can do with documents on Word using
the Work menu.
I don't want to add them to XLStart because I don't use them *that* often.
Obviously, they stay in the "Recently used files" option on the File menu
but eventually something will knock them off and I'd like a quick link
option.
Any ideas?
--
John Dean
Oxford


  #2   Report Post  
Posted to microsoft.public.excel.misc
Peo Sjoblom
 
Posts: n/a
Default Regularly used files

No, I am afraid not. At least not built in. There might be 3rd party add-ins
that will provide this but I don't know of any


--

Regards,

Peo Sjoblom

http://nwexcelsolutions.com


"John Dean" wrote in message
...
Is there any equivalent in Excel to the "Work" menu in Word in the "Built
in Menus" option in the Customise dialogue?
I'd like to be able to attach some worksheets I use regularly to the menu
so I can open them with one click, as you can do with documents on Word
using the Work menu.
I don't want to add them to XLStart because I don't use them *that* often.
Obviously, they stay in the "Recently used files" option on the File menu
but eventually something will knock them off and I'd like a quick link
option.
Any ideas?
--
John Dean
Oxford



  #3   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Regularly used files

Maybe...

http://www.dailydoseofexcel.com/arch...avorites-menu/

From Dick Kusleika's Daily Dose of Excel blog.



John Dean wrote:

Is there any equivalent in Excel to the "Work" menu in Word in the "Built in
Menus" option in the Customise dialogue?
I'd like to be able to attach some worksheets I use regularly to the menu so
I can open them with one click, as you can do with documents on Word using
the Work menu.
I don't want to add them to XLStart because I don't use them *that* often.
Obviously, they stay in the "Recently used files" option on the File menu
but eventually something will knock them off and I'd like a quick link
option.
Any ideas?
--
John Dean
Oxford


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.misc
Elkar
 
Posts: n/a
Default Regularly used files

You may already be aware of this, but the Recently Used Files list can be
expanded to contain up to 9 files. Excel usually defaults to 4 on this list.

Tools -- Options -- General Tab

Change the "Recently Used Files" number to 9.

HTH,
Elkar


"John Dean" wrote:

Is there any equivalent in Excel to the "Work" menu in Word in the "Built in
Menus" option in the Customise dialogue?
I'd like to be able to attach some worksheets I use regularly to the menu so
I can open them with one click, as you can do with documents on Word using
the Work menu.
I don't want to add them to XLStart because I don't use them *that* often.
Obviously, they stay in the "Recently used files" option on the File menu
but eventually something will knock them off and I'd like a quick link
option.
Any ideas?
--
John Dean
Oxford



  #6   Report Post  
Posted to microsoft.public.excel.misc
David
 
Posts: n/a
Default Regularly used files

I maintain the following in my Personal.xls file:

Private Sub OpenTheFile()
With Application.CommandBars.ActionControl
Workbooks.Open "C:\DATA\EXCEL\" & .Caption
End With
End Sub

Private Sub AddMenu()
Dim vFile, vFiles
vFiles = Array("MyCheckBook", "DT Biweekly Timesheet", "Who_Ate", "GFS
Inventory", "TimeSheet", "Class Utilization", "Daily Signups")
With Application.CommandBars("Worksheet Menu Bar")
With .Controls.Add(msoControlPopup, befo=2, temporary:=False)
..Caption = "D&aily Files"
For Each vFile In vFiles
With .Controls.Add(msoControlButton)
..Caption = vFile
..OnAction = "OpenTheFile"
End With
Next
End With
End With
End Sub

When I want to change the file list, I edit the vFiles list, remove the
current menu by dragging it off the menu bar while pressing the Alt key and
rerun AddMenu()

--
David
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
Sharing read-write Excel 2003 files ttt8262 Excel Discussion (Misc queries) 0 April 1st 06 09:39 PM
Recently Used File List - 2002 Contains 'Temp' Files Keith972002 Excel Discussion (Misc queries) 0 July 26th 05 01:46 PM
merging my excel files Donna YaWanna Excel Discussion (Misc queries) 1 June 14th 05 12:53 AM
Cannot access read-only documents. tomgillane Excel Discussion (Misc queries) 14 February 7th 05 10:53 PM
multiple text files URGENT tasha Excel Discussion (Misc queries) 1 December 19th 04 05:44 PM


All times are GMT +1. The time now is 03:28 PM.

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

About Us

"It's about Microsoft Excel"