As mentioned in post #2, you will likely need to employ VBA. You said you want to automate this and not have to click so many buttons as you interact with Access. My proposal is to use VBA to call your saved Import procedure. Now that you have it saved and you have a name for it, you can move to implementing a VBA procedure.
You will need to identify an event that will fire the VBA code you write. I suggest you start with a new, blank form. PLace a single Command Button on the form. Create a Click Event Procedure to handle the event. The event is the user clicking the button on your new form.
The following code uses the name of your saved Import Process.
Code:
DoCmd.TransferText acImportDelim, "Patdata import", "TableName", "FilePathAndName", 0 'Zero indicates that there are not any field names in the file
You will have to adjust the VBA to match other arguments within the statement. For instance the path and name. The following example uses a folder named "test" on the C drive.
Code:
DoCmd.TransferText acImportDelim, "Patdata import", "TableName", "C:\Test\MyFile.csv", 0 'Zero indicates that there are not any field names in the file
You will also have to adjust the code to match the name of the table that you are importing to.
Code:
DoCmd.TransferText acImportDelim, "Patdata import", "TableName", "C:\Test\MyFile.csv", 0 'Zero indicates that there are not any field names in the file