Hi!
I have 3 conditions (A,B,C) with either no or text as input.
I'd like all possible combinations in the results column.
|____A____|___ B____|____C____|__getting__|___wanted__|
|____NO___|____NO___|____NO___|____n/a____|____n/a____| works!
|____3Z___|____NO___|____NO___|___A @ 3Z__|___A @ 3Z__| works!
|____NO___|____5A___|____NO___|___B @ 5A__|___B @ 5A__| works!
|____NO___|____NO___|____2B___|____n/a____|___C @ 2B__| no!
|____2Z___|____4A___|____2B___|___B @ 4A__|_A @ 2z, B @ 4A_| no! but almost!
|____NO___|____5R___|____7J___|____n/a____|_B @ 5R, C @ 7J_| no!
|____9H___|____6W___|____2S___|___B @ 6W__|_A @ 9H, B @ 6W, C @ 2S_| no!
The formula I'm using is:
=IF(A2="no","n/a",IF(B2="no",IF(C2="yes",A2&" & "&C2,A$1&" at "&A2),IF(C2="Yes",A2&","&B2&" & "&C2,B$1&" at "&B2)))
I have 3 conditions (A,B,C) with either no or text as input.
I'd like all possible combinations in the results column.
|____A____|___ B____|____C____|__getting__|___wanted__|
|____NO___|____NO___|____NO___|____n/a____|____n/a____| works!
|____3Z___|____NO___|____NO___|___A @ 3Z__|___A @ 3Z__| works!
|____NO___|____5A___|____NO___|___B @ 5A__|___B @ 5A__| works!
|____NO___|____NO___|____2B___|____n/a____|___C @ 2B__| no!
|____2Z___|____4A___|____2B___|___B @ 4A__|_A @ 2z, B @ 4A_| no! but almost!
|____NO___|____5R___|____7J___|____n/a____|_B @ 5R, C @ 7J_| no!
|____9H___|____6W___|____2S___|___B @ 6W__|_A @ 9H, B @ 6W, C @ 2S_| no!
The formula I'm using is:
=IF(A2="no","n/a",IF(B2="no",IF(C2="yes",A2&" & "&C2,A$1&" at "&A2),IF(C2="Yes",A2&","&B2&" & "&C2,B$1&" at "&B2)))