Hello,
I am running Access 2013.
I want to run a table query and table name I want is "Tabell1_ + NOW ()"
Examples :. Tabelle1_05/05/2015 00:05:03
Is this possible?
//Dennis
Hello,
I am running Access 2013.
I want to run a table query and table name I want is "Tabell1_ + NOW ()"
Examples :. Tabelle1_05/05/2015 00:05:03
Is this possible?
//Dennis
only in vba to create a maketable query - something like
currentdb.execute("select myquery.* INTO [Tabell1_" & now() & "] FROM myquery")
you will need to use square brackets because of the spaces generated
Select "table1" & now() as Fld from table1
Hi, Thanks for the help.