I have an Excel file containing a power query, and an Access file with a maketable query, I would like to use the maketable query in Access to import from the Excel file (not a linked table)
How should I do this using SQL.
I have tried using a linked table in the past, and it caused too may problems.
select[table].[column] into maketable
from 'file path\file.xlsm'
select[table].[column] into maketable
from [\\server\directory\file.xlsm].[table] AS [TEMP TABLE]
The reason I do not give a specific file location is because it is on a local server.
It says that 'FilePath\File.xlsm' is not a valid name. I expect it to show me the column from the identified table
p.s. I apologize in advance if my wording is not very good, as I am not very good with words.