
Variable Table Names in Create Tables/Insert Records
You can substitue the hard coded name for a varible in code. Just rememebr if
the varible has to go in the middle of a string you have to break it up.
ie. "Select " & variblename & ".field from " & variblename & ";"
I hope this helped you.
Alfred
Quote:
> Anybody seen any references on how to create a table from records in another
> table and append records from the other table into the one that needs to be
> created and/or updated. All references I've found seem to indicate the
> table name has to be 'hard coded'. Is there a work around? Thanks for
> responding.