View Single Post
  #2   Report Post  
Gord Dibben
 
Posts: n/a
Default

Greg

No setting, but code.......copy/paste the code below into the ThisWorkbook
Module of your workbook.

Private Sub Workbook_Open()
ActiveWindow.Caption = ActiveWorkbook.FullName
End Sub

Right-click on the Excel logo at top left of Menubar and select "View Code".

Paste in there.

Save the workbook.

OR....use this Toggle macro.

Sub CaptionToggle()
' toggles title bar between document name and full path
If ActiveWindow.Caption = ActiveWorkbook.Name Then
ActiveWindow.Caption = ActiveWorkbook.FullName
Else: ActiveWindow.Caption = ActiveWorkbook.Name
End If
End Sub


Gord Dibben Excel MVP

On Wed, 23 Mar 2005 18:43:04 -0800, "Greg"
wrote:

How do I display a filename's full pathname in the titlebar (i.e. "c:\my
documents\filename" instead of just "filename").