Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
phil6666
 
Posts: n/a
Default "Recently Used File List"


Using Excel 2002...

Is there any way to remove files from this list other than waiting for
them to be replaced over time?
  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

You could remove then. Here is code showing how to get at it

Dim i As Long
For i = 0 To Application.RecentFiles.Count
i = i + 1
If Application.RecentFiles(i).Name = "ABC.xls" Then
Application.RecentFiles(i).Delete
End If
Next i

But don't forget, some items in the list will be just the file name, some
will include the path

--

HTH

RP
(remove nothere from the email address if mailing direct)


"phil6666" wrote in message
...

Using Excel 2002...

Is there any way to remove files from this list other than waiting for
them to be replaced over time?



  #3   Report Post  
tina
 
Posts: n/a
Default

Hi
you can set recently viewed files to zero
Tools options then general tab
Tina
"phil6666" wrote:


Using Excel 2002...

Is there any way to remove files from this list other than waiting for
them to be replaced over time?

  #4   Report Post  
Andy
 
Posts: n/a
Default

Using Excel 2002...

Is there any way to remove files from this list other than waiting for
them to be replaced over time?


This one removes the first file (the second line puts the maximum back
to 9 files, which seemed to be required if I deleted all the files in
the list). Change the (1) if you want to delete other than the most
recent file.

Sub DelMRU()
Application.RecentFiles(1).Delete
Application.RecentFiles.Maximum = 9
End Sub


This one puts the current file back on the list.

Sub AddCurFileToMRU()
Application.RecentFiles.Add Name:=ActiveWorkbook.FullName
End Sub


I have a button for each on my toolbar.

  #5   Report Post  
phil6666
 
Posts: n/a
Default


This sounds like just what I need, but don't know how to add a button
to the toolbar other than those that are already available with
TOOLSCUSTOMIZE.

Could you point me in the right direction in MS Help?

thnx

On Fri, 18 Mar 2005 03:45:36 GMT, Andy wrote:

Using Excel 2002...

Is there any way to remove files from this list other than waiting for
them to be replaced over time?


This one removes the first file (the second line puts the maximum back
to 9 files, which seemed to be required if I deleted all the files in
the list). Change the (1) if you want to delete other than the most
recent file.

Sub DelMRU()
Application.RecentFiles(1).Delete
Application.RecentFiles.Maximum = 9
End Sub


This one puts the current file back on the list.

Sub AddCurFileToMRU()
Application.RecentFiles.Add Name:=ActiveWorkbook.FullName
End Sub


I have a button for each on my toolbar.




  #6   Report Post  
Andy
 
Posts: n/a
Default

ToolsCustomizeCommandsMacros

Drag the Custom Button (yellow smiley face) to your toolbar, right
click on it, assign macro (you have to have a worksheet open so the
assign macro dialog box comes up). Right clicking on the button while
the ToolsCustomize dialog box is open will also give you some other
options (like changing the smiley face).


  #7   Report Post  
phil6666
 
Posts: n/a
Default


I followed Excel "help" and copy/pasted exactly what you wrote & it
works perfectly!!!

Now, if I only had a minimal clue what macros really can do.......


On Sat, 19 Mar 2005 04:58:47 GMT, Andy wrote:

ToolsCustomizeCommandsMacros

Drag the Custom Button (yellow smiley face) to your toolbar, right
click on it, assign macro (you have to have a worksheet open so the
assign macro dialog box comes up). Right clicking on the button while
the ToolsCustomize dialog box is open will also give you some other
options (like changing the smiley face).


  #8   Report Post  
Andy
 
Posts: n/a
Default

Glad it worked.

Now, if I only had a minimal clue what macros really can do.......


Almost anything. I've barely scratched the surface!



  #9   Report Post  
phil6666
 
Posts: n/a
Default


OK....now Excel doesn't want me to use the macro because the digital
signature that I wrote isn't in the trusted root certification
authorities store.

How do I do that???

thnx


On Fri, 01 Apr 2005 21:25:19 -0500, phil6666
wrote:


I followed Excel "help" and copy/pasted exactly what you wrote & it
works perfectly!!!

Now, if I only had a minimal clue what macros really can do.......


On Sat, 19 Mar 2005 04:58:47 GMT, Andy wrote:

ToolsCustomizeCommandsMacros

Drag the Custom Button (yellow smiley face) to your toolbar, right
click on it, assign macro (you have to have a worksheet open so the
assign macro dialog box comes up). Right clicking on the button while
the ToolsCustomize dialog box is open will also give you some other
options (like changing the smiley face).


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
Recent File List Check Box Greyed out Bruce Wilson Excel Discussion (Misc queries) 7 February 22nd 07 03:15 PM
My most recently used file list in excel is not correct. silica Excel Discussion (Misc queries) 2 January 24th 05 09:55 PM
export excel file to outlook express contact list gebhardt family New Users to Excel 0 January 20th 05 11:59 PM
Read Text File into Excel Using VBA Willie T Excel Discussion (Misc queries) 13 January 8th 05 12:37 AM
Recently Used File List MISAdmin New Users to Excel 5 December 1st 04 01:53 PM


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