IF Statement

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

Guest

How can I type a formula for the following:

If the value in cell b4 < 10, round the figure to 1 digit; if the value in
cell b4 is 10 or greater round to 0 digits.

Thank you,
 
=if(b4<10,round(b4,1),round(b4,0))
How can I type a formula for the following:

If the value in cell b4 < 10, round the figure to 1 digit; if the value in
cell b4 is 10 or greater round to 0 digits.

Thank you,
 
Sue said:
How can I type a formula for the following:

If the value in cell b4 < 10, round the figure to 1 digit; if the value in
cell b4 is 10 or greater round to 0 digits.

Thank you,


Hi Sue,

Place this formula in any cell other than [B4]:

=IF(B4<10,ROUND(B4,1),ROUND(B4,0))

BFN,

fp.
 

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


Back
Top