format currency for export

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am running a query to export data for file upload. I can't seem to get the
currency in the format I want.

I am using this

Contribution: Format(zqryKpfRegSum!SumOfdecEmployeeAmt,"00000000.00")

so if I have $4587.79 it returns 00004587.79 but what I want is 0000458779.

I've tried removing the decimal, but then I only get the whole dollar amount.

help?
 
It looks like you want to multiply by 100 and then format the results:
Contribution: Format(zqryKpfRegSum!SumOfdecEmployeeAmt * 100,"0000000000")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top