Format decimal fields as money

G

Guest

Hello, I have an Access 97 application that uses SQL Server 2000 as the back-end. For a one report I'm getting a decimal field back from SQL Server but want to display it on the report as currency. How is this done? I've tried setting the format type to currency but it doesn't work

Thank

Don
 
F

fredg

Hello, I have an Access 97 application that uses SQL Server 2000 as
the back-end. For a one report I'm getting a decimal field back
from SQL Server but want to display it on the report as currency.
How is this done? I've tried setting the format type to currency
but it doesn't work.

Thanks

Don

Use an unbound control. Set it's control source to:

=Format([FieldName],"currency")

or.. =Format([FieldName],"$ #,##0.00")
 

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

Top