T
TylerH
I'm looking to do this:
If(B1=b OR C1=c)
Then(D1=200);
Else(D1=A1)
A B C D
1 b x 200
2 x c 200
3 x c 200
4 b x 200
5 x x 5
6 x c 200
(this is what i'm looking for
If(B1=b OR C1=c)
Then(D1=200);
Else(D1=A1)
A B C D
1 b x 200
2 x c 200
3 x c 200
4 b x 200
5 x x 5
6 x c 200
(this is what i'm looking for