You are on page 1of 2

Q. Write down equations for the following arrow boxes showing in the figures.

1.
=IF(B2>150,10%,IF(B2>=101,7%,IF(B2>=51,5%,IF(B2>=1,3%,””))))

2. Hint (Progress= “delivered” and Delivery date <>) “Closed”

=IF(AND(B2=“Delivered”,C2<> “”), “Closed”, “”)

3. Hint (Progress= “delivered” and Delivery date <>) “Closed”, “Open”

=IF(AND(B2=“Delievered”,C2<>“”),“Closed”,“Open”)

4. Hint (Amount >100 and Status= “Closed”)  “10%of amount”, 0)

=IF(AND(B2>=100,C2=“Closed”),B2*10%,,0)
5.

=IF(AND(B2>30,C2>5),“Poor”,IF(AND(B2<20,C2<3), “Excellent”, “Average”))

6. Hint (Amount >100 and Status= “Closed”)  “10%of amount”, “3% of amount”)

=IF(AND(B2>=100,C2= “Closed”),B2*10%,B2*3%)

7.
=IF(AND(B2>=$F$1,B2<=$F$2), “x”, “”)

You might also like