TCARPENTER
Programmer
I have to perform some updates to a database for a database user out of the office, so I just want to send a small database with a query to append a few tables. I want my query to prompt the user for the location (the name of the database hasn't changed). I can't seem to figure this out. Here is what I have so far just as test:
TIA
Todd
Code:
PARAMETERS Location Text ( 255 );
SELECT *
FROM [Location] & DatabaseUpdates.mdb.TL_Report_Table INNER JOIN [Location] & DatabaseUpdates.mdb.TL_ReportOptions_Table ON TL_Report_Table.TL_Report_Recnum = TL_ReportOptions_Table.TL_Report_Recnum;
TIA
Todd