Hi,
I have an Access accdb file that I'm running on a computer that has a run-time installed. I've tried everything to figure it out, I need it to do a delete query and append query.
I've narrowed it down to the append query, and it's appending a linked Excel file to a table in the database. It has to do with the link, I've imported the Excel file in the database and both append and delete queries.
It just gives me the error when I'm trying to append from a linked Excel file any idea what could be causing this? The computer that has run time installed has no other program installed, could it be that because Excel is not on the computer is what is causing the problem? It works on my computer that has Office 365 with Access 2016, the other computer only has Access Run Time?
Anyone that can help I would greatly appreciate it!
Thanks,
Xavier
-----------------------------------
THIS DELETES DATA FROM THE TABLE:
DoCmd.SetWarnings False
DoCmd.OpenQuery "qry_05a_tbl_XCR_qry_01a_PartNumList_1b_V2_Del ete"
DoCmd.SetWarnings True
---------
THIS APPENDS DATA FROM THE LINKED EXCEL FILE:
DoCmd.SetWarnings False
DoCmd.OpenQuery "qry_05b_tbl_XCR_qry_01a_PartNumList_1b_V2_App end"
DoCmd.SetWarnings True
-----------------------------------