I need an expression to check multiple IFS and i cannot figure it out. What I have so far:
IFS((
([Antigen Results] <> “Positive”),
([PCR Results] <> “Positive”),
“CLEAR”,
([Antigen Results] = “Positive”),
([PCR Results] = “Positive”),
“ACTIVE”),
TRUE)
I want this expression to check multiple values and give a text value accordingly.