RoundUp Currency

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

Guest

I need to RoundUp currency to the nearest dollar. It does this in the table,
but I have a report with Sub Totals and a Grand Total that are still
displaying a decimal. This is even after I changed decimals to 0. I know I
should have to write anything complicated for this.
 
Try writing in the control source of the field
=Round([FieldName])

=Round(Sum([FieldName]))
 
if the round is not working properly, use the format function:

format( sum([filedname]), "0")
 

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