The current source is available through the macro editor. Press
Alt+F11 to open the editor, and press Ctrl+G to open the Immediate
window at the bottom right. Copy the following line, paste it into the
Immediate window, and press Enter:
?ActiveDocument.MailMerge.DataSource.Name
The path and file name will appear on the next line.
If you want a permanently saved macro to which you can assign a
toolbar or Quick Access Toolbar button, put this into the Normal
template (see
http://www.gmayor.com/installing_macro.htm if needed):
Sub CurrentDataSource()
MsgBox ActiveDocument.MailMerge.DataSource.Name
End Sub
Clicking the button to run the macro will display the path and file in
a message box.
--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.