IF Statement

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I write an IF statement for the following:

If the value in cell b4 < 10, round that figure to 1 decimal place.

If the value in cell b4 => 10, round that figure to 0 decimal place.

Thanks,
 
=IF(B4<10,ROUND(B4,1),IF(B4>=10,ROUND(B4,0),""))

Vaya con Dios,
Chuck, CABGx3
 

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