Rounding

  • Thread starter Thread starter MattAccess
  • Start date Start date
M

MattAccess

I am trying to round. I've tried using Ccur and Clng, but
when I attempt to match between two tables, it does not
match. It still keeps the original string lengths. Is
there a general rounding function I can use?
 
Did you try:

Round(number, number of decimal places)

eg. Round(23.345, 2) results in 23.35

HTH.

Martin.
 
Back
Top