Clearing File Menu

  • Thread starter Thread starter Gerrit
  • Start date Start date
I take it you mean the recently used file list and that vba works in the Mac
version?

If you want to delete them all then set tools > options > general > recently
used files to 0, confirm the change, then change it back to the number it
was previously.

or with vba

Sub ClearMRU()
Application.DisplayRecentFiles = True
listsize = RecentFiles.Maximum
RecentFiles.Maximum = 0
RecentFiles.Maximum = listsize
End Sub

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top