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