J
James
I have this code which exports a data table to excel:
st = Me!List0.Column(0)
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, st, strPath &
"/" & st & ".xls"
Application.FollowHyperlink strPath & "/" & st & ".xls"
(line two and three are one line in VB)
Problem is, I would also like to export at the same time another table
explaining the field names of the first table (FIELD_KEY, FIELD_DESCRIP). I
would like to export this second table to another worksheet in the same excel
file. Is this possible???
Thanks,
st = Me!List0.Column(0)
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9, st, strPath &
"/" & st & ".xls"
Application.FollowHyperlink strPath & "/" & st & ".xls"
(line two and three are one line in VB)
Problem is, I would also like to export at the same time another table
explaining the field names of the first table (FIELD_KEY, FIELD_DESCRIP). I
would like to export this second table to another worksheet in the same excel
file. Is this possible???
Thanks,