Rounding Up a sum function

T

Tom Wickerath

Have you tried using the Round function?

=Round(Sum([Quantity]),2)

This should round to two decimal places with what is commonly known as
"Banker's Rounding". Google this term if you want to learn more about it.


Tom

http://www.access.qbuilt.com/html/expert_contributors.html
__________________________________________

:

How do I round up a function like this:

=Sum([Quantity])
 
Top