S
SharonBerg
I want to add a suffix to the table name in a make table
query. In a global string variable: gsEvent is the value
picnic
Select table1.Event, table1.year into newtable
from table1
I want the new table name to be newtable_picnic.
I know how to do this when storing the query in a variable:
strsql = "select table1.event, table1.year into newtable_"
& "'" & gsEvent & "'" & " from table1"
query. In a global string variable: gsEvent is the value
picnic
Select table1.Event, table1.year into newtable
from table1
I want the new table name to be newtable_picnic.
I know how to do this when storing the query in a variable:
strsql = "select table1.event, table1.year into newtable_"
& "'" & gsEvent & "'" & " from table1"