Hi,
I have two columns where I’d like to have both cells turn red when they both have #N/A.
Variations on
AND(L19="#N/A";N19="#N/A")
have not worked.
What am I overlooking?
Thanks
Hi,
I have two columns where I’d like to have both cells turn red when they both have #N/A.
Variations on
AND(L19="#N/A";N19="#N/A")
have not worked.
What am I overlooking?
Thanks
Test that formula in a cell before you put it in the c.f. dialog. I guess that the cells in question do not contain the string “#N/A”. They contain the error value #N/A. ISNA(A1) tests A1 for the error value.
That was it.
The following now works:
AND(ISNA(L19);(ISNA(N19)))
Thank you!
AND(ISNA($L1);ISNA($N1))
Almost the same (I see I’ve been too liberal with the brackets above)
Many thanks!