if formula

G

Guest

--
Dave1125
Looking for formula for if less than $500.00 multiply by 1.5 but if over
$500.00 multiply by 1.4
 
G

Gord Dibben

=IF(H3<500,H3*1.5,H3*1.4)

=IF(H3="","",IF(H3<500,H3*1.5,H3*1.4)) to trap for H3 being blank.

You don't say what to do about exactly 500 but you change the operator to <=500


Gord Dibben MS Excel MVP
 
L

Les Linton

Dave;568566 said:
--
Dave1125
Looking for formula for if less than $500.00 multiply by 1.5 but if
over
$500.00 multiply by 1.4

=IF(A1<500,(A1*1.5),(A1*1.4))

Les
 

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