double a value & ROUND to next highest thousand

  • Thread starter Thread starter pgruening
  • Start date Start date
P

pgruening

How do I double a number and round up to next highest thousand

ie 35,200 X 2 = 70,400 Round to 71,000

Thanks for any help
 
Try following function:

=ROUNDUP(B3*2;-3)

where B3 is a reference to a cell with value, which you want t
calculate, -3 means "round to thousands"

mlho
 
I tried the formuma =ROUNDUP(B3*2;-3) insuring B3 cell had a valid
amount but received "The formula contains an error"
 
Replace the semi-colon with a comma for your version of XL:

=ROUNDUP(B3*2,-3)
 
Hi pgruening:

The equation contains a small error. Instead of a semicolon use a
comma. Like this:

=ROUNDUP(B3*2,-3)

Good Luck,
Thomas
 

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