need help with formula

  • Thread starter Thread starter Kerri Olsen
  • Start date Start date
K

Kerri Olsen

how to write a formula?
if cell =>24 multiple by 22. if cell is <24, multiply 24 by 22, multiply
difference by 33 add together
 
See Help for "IF worksheet function"
I can't be more specific without a better description of the alternative
calculations.

Jerry
 
if the # in cell is 35
result would be 24*22 + 11*33=891

if the # in cell is 10
result would be 10*22=220


I am not understanding how to create an if equation
 
Hi Kerri

With the number in A1 try this formula in B1:

=IF(A1<24,A1*22,24*22+(A1-24)*33)


Regards,
Per
 
Back
Top