If, then Formulas

  • Thread starter Thread starter susieh
  • Start date Start date
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.
 
Hi,

Try

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

or if you want to be fancy:

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