Hey guys. I have an Access Query that displays information. I need to export that to Excel, but transpose it in excel...
When it is run in access and displayed, it looks like:
Company Area Street
UPS Kane Allen
FedEx Cook Daniel
I would like the Company, Area, and Street to be the ROWS and the data to become the columns. I found one topic here, but wasn't understanding the "normalize" crosstab. For a crosstab, I need a value, but there are no values, it's just raw data out of a table.
To export to excel, I have:
DoCmd.TransferSpreadsheet acExport, , "qryEffectiveTrustees", "TestXLS.xls", True
How would I do this? Would I do it in Access first then export as above?
Thanks.
When it is run in access and displayed, it looks like:
Company Area Street
UPS Kane Allen
FedEx Cook Daniel
I would like the Company, Area, and Street to be the ROWS and the data to become the columns. I found one topic here, but wasn't understanding the "normalize" crosstab. For a crosstab, I need a value, but there are no values, it's just raw data out of a table.
To export to excel, I have:
DoCmd.TransferSpreadsheet acExport, , "qryEffectiveTrustees", "TestXLS.xls", True
How would I do this? Would I do it in Access first then export as above?
Thanks.