Sunshine8790
Board Regular
- Joined
- Jun 1, 2021
- Messages
- 86
- Office Version
- 365
- Platform
- Windows
I need a formula in column L that returns a value of "TRUE" if:
Cell in column G is "No Match" (or cell in H is "False")
AND
Cell in K is "False"
I'm at my wits end.
Cell in column G is "No Match" (or cell in H is "False")
AND
Cell in K is "False"
I'm at my wits end.
KC1 Compare Practice.xlsx | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
G | H | I | J | K | L | M | N | |||
1 | Emp ID Match | Id is num | Badge Match | Badge is num | Need Added? | ID need Update? | ID need update? | Badge need update? | ||
2 | 309 | TRUE | 309 | TRUE | FALSE | FALSE | FALSE | |||
3 | No Match | FALSE | No Match | FALSE | TRUE | TRUE | TRUE | |||
4 | 310 | TRUE | 310 | TRUE | FALSE | FALSE | FALSE | |||
5 | No Match | FALSE | No Match | FALSE | TRUE | TRUE | TRUE | |||
6 | No Match | FALSE | No Match | FALSE | TRUE | TRUE | TRUE | |||
7 | 311 | TRUE | 311 | TRUE | FALSE | FALSE | FALSE | |||
8 | 2 | TRUE | 2 | TRUE | FALSE | FALSE | FALSE | |||
9 | No Match | FALSE | No Match | FALSE | TRUE | TRUE | TRUE | |||
10 | 3 | TRUE | 3 | TRUE | FALSE | FALSE | FALSE | |||
11 | 312 | TRUE | 312 | TRUE | FALSE | FALSE | FALSE | |||
12 | 313 | TRUE | 313 | TRUE | FALSE | FALSE | FALSE | |||
13 | No Match | FALSE | No Match | FALSE | TRUE | TRUE | TRUE | |||
14 | 4 | TRUE | No Match | FALSE | FALSE | FALSE | TRUE | |||
15 | 5 | TRUE | 5 | TRUE | FALSE | FALSE | FALSE | |||
16 | No Match | FALSE | No Match | FALSE | TRUE | TRUE | TRUE | |||
Brivo Data |
Cell Formulas | ||
---|---|---|
Range | Formula | |
G2:G16 | G2 | =IFERROR(MATCH(A2,'User Import Template'!A:A,0),"No Match") |
H2:H16,J2:J16 | H2 | =ISNUMBER(G2) |
I2:I16 | I2 | =IFERROR(MATCH(D2,'User Import Template'!D:D,0),"No Match") |
K2:K16 | K2 | =AND(G2="No Match",I2="No Match") |
M2:M16 | M2 | =IF(G2="No Match","TRUE","FALSE") |
N2:N16 | N2 | =IF(I2="No Match","TRUE","FALSE") |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
H:N | Cell Value | contains "TRUE" | text | NO |