Click on File - Properties - General tab
If the directory path is too long I usually highlight it, right click to
copy it.
Open up Notepad to look at it.
And if you can not see Properties as an option then click on the bottom of
the list where two little down arrows are displayed.
Hover your mouse over the file name in the Recently used Documents list.
You'll see the path in the screen tip. You can also display the Save As
dialog box and "Save In" will reflect the location of the previously saved
document.
--
~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP https://mvp.support.microsoft.com/profile/Melton
What is a Microsoft MVP? http://mvp.support.microsoft.com/gp/mvpfaqs
Add the line
ActiveWindow.Caption = ActiveDocument.FullName
to an autoopen macro stored in normal.dotm to display it in the title bar
OR
Run the following macro to display it in a message box
Sub myPath()
MsgBox ActiveDocument.FullName
End Sub
OR
Run the following macro to enter it at the cursor
Sub TypePath()
Selection.TypeText ActiveDocument.FullName
End Sub
OR
Insert a Filename field with a \P switch.
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
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.