Jump to content

This topic is 8039 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

How do you round a number up to the next highest thousand? I've tried the Round function but it doesn't do what I want it to do. I tried putting in a negative precision number but no luck. Here's an example of what I need:

Number entered: 54,001.30

Rounded number result: 55,000.00

Number entered: 38,202.03

Rounded number result: 39,000.00

Thanks for the help!

Posted

Hi Jeff,

Try this one:

Case(1000, Round(Number / 1000, 0) * 1000, "")

It seems to work in my little file. You will have to use Number format of the field to get the .00.

HTH

Lee

Posted

Jeff --

With one minor exception, don't listen to these others; my original answer is accurate and elegant.

The exception? If you want the number to show two decimal places, you do indeed have to use format:number.

This topic is 8039 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.