Multiple IF

L

loscherland

I need a formula to calculate the margin price dependant on the RRP a
follows:

IF RRP is between 29 - 99, then margin is 50
IF RRP is between 100 - 199, then margin is 60
IF RRP is 200+, then margin is 70

How do I write an IF formula for this
 
F

Frank Kabel

Hi
if this value is stored in A1 try
=IF(A1>=200,70,IF(A1>=100,60,IF(A1>=29,50,"not defined")))
 

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