MushroomKing
Registered User.
- Local time
- Today, 11:50
- Joined
- Jun 7, 2018
- Messages
- 100
Hi everyone,
I'm exporting some query data to an Excel sheet.
However, i don't want to overwrite the data (on the same row) everytime i run the code.
I would rather keep all the data.
So when i run the code, i want to check which next row is empty, and then export.
I'm exporting some query data to an Excel sheet.
However, i don't want to overwrite the data (on the same row) everytime i run the code.
Code:
DoCmd.TransferSpreadsheet acExport, 8, "query", "C;\...", True, "cellrange"
I would rather keep all the data.
So when i run the code, i want to check which next row is empty, and then export.