S Scott May 7, 2009 #1 How do I print the database path, name and report name on the report? Example: \\server\share\access\databasename.mdb savedreportname
How do I print the database path, name and report name on the report? Example: \\server\share\access\databasename.mdb savedreportname
P paul bennett May 7, 2009 #2 Try this in a text box: =currentdb.Name & "/" & "Report Name" Dont know how to find the report name automaticaly though
Try this in a text box: =currentdb.Name & "/" & "Report Name" Dont know how to find the report name automaticaly though
S Scott May 7, 2009 #3 Thank you! paul bennett said: Try this in a text box: =currentdb.Name & "/" & "Report Name" Dont know how to find the report name automaticaly though Click to expand...
Thank you! paul bennett said: Try this in a text box: =currentdb.Name & "/" & "Report Name" Dont know how to find the report name automaticaly though Click to expand...
F fredg May 7, 2009 #4 Try this in a text box: =currentdb.Name & "/" & "Report Name" Dont know how to find the report name automaticaly though Click to expand... The Report's Name property will give you the name of the report. =CurrentDb.Name & " " & [Name]
Try this in a text box: =currentdb.Name & "/" & "Report Name" Dont know how to find the report name automaticaly though Click to expand... The Report's Name property will give you the name of the report. =CurrentDb.Name & " " & [Name]
J John Spencer MVP May 7, 2009 #5 I would try the following expression CurrentDb().Name & "/" & Me.Name John Spencer Access MVP 2002-2005, 2007-2009 The Hilltop Institute University of Maryland Baltimore County
I would try the following expression CurrentDb().Name & "/" & Me.Name John Spencer Access MVP 2002-2005, 2007-2009 The Hilltop Institute University of Maryland Baltimore County