computing a rounded number

sheederj

Registered User.
Local time
Today, 20:49
Joined
Jul 26, 2001
Messages
27
I have a computation in a query which results in numbers with extensive decimal places. I need to match the calculated values to a lookup table where the matching value only has two decimal places. Because of this difference, they don't match. I tried making a new table from the query and setting the fixed value to two decimal places, but it doesnt work. access still thinks they have however many decimal places. Any ideas on how to make this work?
thanks for your help!
 
How about the Round() function?

Round(YourCalculation,2)
 
that worked great! thanks very much!
 

Users who are viewing this thread

Back
Top Bottom