Open Recent

  • Thread starter Thread starter lizalewis
  • Start date Start date
L

lizalewis

I have gotten used to this software and have set my commonly used commands in
the ribbon - but I miss the display of recently used files - am I missing
something or did Microsoft omit this great option in the 2007 release
 
Try this small UDF:

Function CapCounter(r As Range) As Integer
s = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
v = r.Value
l = Len(v)
CapCounter = 0
For i = 1 To l
ch = Mid(v, i, 1)
If InStr(s, ch) > 0 Then
CapCounter = CapCounter + 1
End If
Next
End Function
 
Hi

When you click the round Office button, you see in the right hand side of
the pane a list of your recently used files.
If you want to alter the number of files displayed, then round Office
button>Excel Options>Advanced>Display>Recently used files>set a value
between 0 and 50
 
THANK YOU!

Roger Govier said:
Hi

When you click the round Office button, you see in the right hand side of
the pane a list of your recently used files.
If you want to alter the number of files displayed, then round Office
button>Excel Options>Advanced>Display>Recently used files>set a value
between 0 and 50
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top