My Access 2003 application imports periodical Excel spreadsheets, which are in the same format, into sequential Tables.
I wish to to use the same query each period to process the latest Table using;
Dim strTablename as String
strTablename = [latest Table name]
Select * from strTablename
The Query produced returns strTablename as the name of the 'linked' Table
What am I doing wrong??
I wish to to use the same query each period to process the latest Table using;
Dim strTablename as String
strTablename = [latest Table name]
Select * from strTablename
The Query produced returns strTablename as the name of the 'linked' Table
What am I doing wrong??
Comment