I have a user that needs to be able to input the name of the table that is to be created on a form and hit the button. Then change the value on the form and replicate process with a new table name. Is this possible?
This was my stab at it but not working.
SELECT UCase(ListsToSend.FNAME) AS FNAME
INTO [Forms]![f_DMMProcessing]![Text8] IN 'S:\Target.mdb'
FROM ListsToSend
WHERE (((ListsToSend.TOURCODE)=[Forms]![f_DMMProcessing]![Text8]));
Another Option Might be if anyone could tell me if I can export a .csv of the query with the file name from the form field as in
S:\[Forms]![f_DMMProcessing]![Text8].csv
This was my stab at it but not working.
SELECT UCase(ListsToSend.FNAME) AS FNAME
INTO [Forms]![f_DMMProcessing]![Text8] IN 'S:\Target.mdb'
FROM ListsToSend
WHERE (((ListsToSend.TOURCODE)=[Forms]![f_DMMProcessing]![Text8]));
Another Option Might be if anyone could tell me if I can export a .csv of the query with the file name from the form field as in
S:\[Forms]![f_DMMProcessing]![Text8].csv
Last edited: