T
TheVadek
I'm using the following code to export Access query to excel:
DoCmd.OutputTo ObjectType:=acOutputQuery, ObjectName:="qryexportforexcel", _
OutputFormat:=acFormatXLS, AutoStart:=False
Problem: I have a bunch of calculated currency fields they show up fine
like $5,000 in excel, but they are formatted as text in excel. So If I want
to do any calculations in excel I have to convert them in excel to numerical
column by column.
Is there a way I can export them as currency fields so I don't have to do
any conversion in excel?
Thanks
DoCmd.OutputTo ObjectType:=acOutputQuery, ObjectName:="qryexportforexcel", _
OutputFormat:=acFormatXLS, AutoStart:=False
Problem: I have a bunch of calculated currency fields they show up fine
like $5,000 in excel, but they are formatted as text in excel. So If I want
to do any calculations in excel I have to convert them in excel to numerical
column by column.
Is there a way I can export them as currency fields so I don't have to do
any conversion in excel?
Thanks