=IF(B25="",ROUND(O25,-2),"")

  • Thread starter Thread starter Nick C
  • Start date Start date
N

Nick C

I am trying to write a formula which rounds O25 to the nearest thousand, with
a minimum of one thousand.

So 330 would be 1000
1565 would be 2000
1321 would be 1000

Thanks in advance

Nick
 
Whenever you have a formula in a cell, you can always copy everything after
the equal sign and use it in any other function (although sometimes you
might need to add surrounding parentheses). Now, for your question, I assume
you mean the formula in the Subject line and I further assume you want to
replace your ROUND function with what I posted. Is this what you want?

=IF(B25="",MAX(1000,ROUND(O25,-3)),"")

Rick
 

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

Similar Threads

help on INDEX 2
Sumif 10
Rounding off 6
rounding 6
Problem with calculating time 9
Rounding 4
Hard reference in a macro 1
Rounding 1

Back
Top