Creating a formula

D

Dave

I am using excel 97
If A1 is Retail price
A2 is Discount Code A=50%,B=55%,C=60%
What formula can I use in A3 to reach cost
 
C

CLR

Dunno the relationship between Retail Price and Discount Code, but maybe
this formula will help.....

=IF(A2="A",A1*0.5,IF(A2="B",A1*0.55,IF(A2="C",A1*0.6,"")))

Vaya con Dios,
Chuck, CABGx3
 
Top