WelshyWizard
IS-IT--Management
Hi all,
I'm looking to export records and headers from 3 seperate Paradox tables, into Excel. Easy I can hear you say?
Currently I do this useing the code below:
However, what I really want is for all 3 tables to be saved on the same worksheet within the same xls file... Either underneath each other or next to each other. Hopefully at this point I can still hear someone say easy because I haven't got a clue!
Any help would be great.
If I have to settle for saving them on 3 seperate worksheets in a single xls file then I will!
Cheers.
Today is the tomorrow you worried about yesterday - and all is well.....
I'm looking to export records and headers from 3 seperate Paradox tables, into Excel. Easy I can hear you say?
Currently I do this useing the code below:
Code:
If Not exportSpreadsheet("ARWHParts.db","C:\\ARWHParts.xls", True)
then
errorShow()
endIf
If Not exportSpreadsheet("ARWHGdrs.db","C:\\ARWHGdrs.xls", True)
then
errorShow()
endIf
If Not exportSpreadsheet("ARWHBolts.db","C:\\ARWHBolts.xls", True)
then
errorShow()
endIf
However, what I really want is for all 3 tables to be saved on the same worksheet within the same xls file... Either underneath each other or next to each other. Hopefully at this point I can still hear someone say easy because I haven't got a clue!
Any help would be great.
If I have to settle for saving them on 3 seperate worksheets in a single xls file then I will!
Cheers.
Today is the tomorrow you worried about yesterday - and all is well.....