I have a business need to export data from Access (2013) into Excel (2010\13) that will then be distributed to x number of users. This will happen on a regular basis. I want to perform as much of the formatting etc in Access and avoid creating macro's in Excel and calling them.
This is my data in Access:
Cat1 Cat2 Cat3 Item Desc
AAA PPP QQQ WID1 Widget1
AAA RRR KKK WID2 Widget2
AAA RRR JJJ WID3 Widget3
BBB DDD EEE WID4 Widget4
BBB FFF UUU WID5 Widget5
In Excel, the data needs to look like this
AAA
PPP
QQQ
WID1 Widget1
RRR
KKK
WID2 Widget2
JJJ
WID3 Widget3
BBB
DDD
EEE
WID4 Widget4
FFF
UUU
WID5 Widget5
Is there a way to loop through the data in Access, build a temp table to look like the above, then export the temp table to Excel? Or will have have to export the data as it originally is and then call a macro in Excel to perform the formatting?
Regards,
Michael