I have a button that initiates the import of a spreadsheet into an existing table.
I would like to let the user know that the import was successful with a message box of somthing equivelant. Below is part of the code that I am using to import the spreadsheet.
On Error GoTo ErrCommonDialog
If fraImportType = 1 Then
DoCmd.TransferSpreadsheet acImport, , strAccessTable, strExcelWorkBook, booFieldNames
Thanks in advance for all your help.
I would like to let the user know that the import was successful with a message box of somthing equivelant. Below is part of the code that I am using to import the spreadsheet.
On Error GoTo ErrCommonDialog
If fraImportType = 1 Then
DoCmd.TransferSpreadsheet acImport, , strAccessTable, strExcelWorkBook, booFieldNames
Thanks in advance for all your help.