Thanks Matt, works a treat.
A variation on a theme, I have to identify a value based on the contents of two cells and can't get this to work either.
Column A Column B Column C
1.Refund 10
2.Sale 10
3.Sale 10
4.COJ 5
5.Sale 0
6.Sale 0
7.Refund 0
In column C I want to appy the following condition.
If A1 = SALE and B1 = 10 THEN 6.50
If A1 = COJ and B1 = 5 THEN 2
ELSE 0
How do I do this?
Main Topics
Browse All Topics





by: mvidasPosted on 2004-06-02 at 13:02:07ID: 11216255
Hi Tim,
=90,A1*0.0 15,IF(A1>= 75,A1*0.01 ,0)))
Assuming the data starts in A1, enter the following formula and fill down for all values in A:
=IF(A1>=110,A1*0.02,IF(A1>
Should do the trick!
Matt