If, then Formulas

S

susieh

Does anyone know how to create a formula for this?

I want to get a value in A22 and if that value is greater than 0 (even if it
is less than 1), then multiply A22 and A23 and add 45 to the total, if the
value in A22 is 0, then I want the cell to be empty.
 
S

ShaneDevenshire

Hi,

Try

=IF(A22>0,(A22*A23)+45,"")

or if you want to be fancy:

=IF(A22,A22*A23+45,"")
 

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

Top