I hope I get to find a solution for this…
I have 3 cells in Numbers
C3 = “A”
C4 = “B”
C5 = “Original”
Now, I would like to have a formula that evaluates both C3 and C4, and if both are not their original values, then change C5 to “New”.
It seems that the formulas I tried always seem to change C5 when one of the values in C3 or C4 changes. This was the closest I got, but not working either:
IF(
C3≠"A",
IF(
C4≠"B",
"New",
"Original"
),
"Original"
)
if you rather see it in a single line:
IF(C3≠"A",IF(C4≠"B","New","Original"),"Original")
With this formula this is what I get in different scenarios (the first 3 are expected)
This one is the one that’s not expected (I mean, it’s expected because of the formula, but not what I expect it to do)
EDIT: I had to use AND
, (which wasn’t working when ChatGPT offered something similar) but also use the “not equal to”, because using the “equal to” was not helping for some reason. Final formula:
IF(AND(C3≠"A",C4≠"B"),"New","Original")