slstewart249
New Member
- Joined
- Apr 14, 2018
- Messages
- 3
I am trying to write a nested IF AND Function to produce a result off of a Tiered Fee Table.
A . B . C . D
1 . Condition 1 Condition 2 Result if True . Result if False
2 . 1,000 2,000 1.7% . 0
3 . 2,000 3,000 1.6% . 0
4 . 3,000 . 4,000 . 1.5% . 0
5
6 . # to Be evaluated:
7 1,500
8 . 2,500
The below formula works for w having only two conditions (A2,B2).
If written it so =IF(AND(A7>=A2,A7<=B2),C2,D2)
How can I write a NESTED FORMULA to have multiple conditions ie. Row 2, Row 3, Row 4?
A . B . C . D
1 . Condition 1 Condition 2 Result if True . Result if False
2 . 1,000 2,000 1.7% . 0
3 . 2,000 3,000 1.6% . 0
4 . 3,000 . 4,000 . 1.5% . 0
5
6 . # to Be evaluated:
7 1,500
8 . 2,500
The below formula works for w having only two conditions (A2,B2).
If written it so =IF(AND(A7>=A2,A7<=B2),C2,D2)
How can I write a NESTED FORMULA to have multiple conditions ie. Row 2, Row 3, Row 4?