Well you could exclude them if you knew what was in the first column and that data was unique.?
You would carry out the automation from within Access. Just open the file after download, delete rows 1 -3, save the file then process it as you require.
If you could identify them, then exclude them in the query that extracts the data.
ChatGPT reckons you can do it with a sub query.
Code:
SELECT *
FROM MyExcelData
WHERE ID NOT IN (
SELECT TOP 3 ID
FROM MyExcelData
ORDER BY ID
)
ORDER BY ID;
You might not need the ORDER clauses.
https://chatgpt.com/share/689c86e8-5...9-ed5fa3d9586c