Thanks to kpark91, I am using the below formula to tell me if two cells are both not blank (two cells both have data), there is a "conflict"
=IF(OR(V3 = "", X3 = ""), "ok", "CONFLICT")
I need to make it a bit more complicated now and ask it to tell me if there is any data in two ranges of cells, there is a conflict. In other words, if there is data in either cell T3, U3 or V3 AND there is data in either cell X3, Y3 or Z3, tell me it's a conflict. I tried the below formula but that didnt work. I tried parenthesis around the range and that didn't work.
=IF(OR(T3:V3 = "", X3:Z3 = ""), "ok", "CONFLICT")
Any ideas? Thanks!
=IF(OR(V3 = "", X3 = ""), "ok", "CONFLICT")
I need to make it a bit more complicated now and ask it to tell me if there is any data in two ranges of cells, there is a conflict. In other words, if there is data in either cell T3, U3 or V3 AND there is data in either cell X3, Y3 or Z3, tell me it's a conflict. I tried the below formula but that didnt work. I tried parenthesis around the range and that didn't work.
=IF(OR(T3:V3 = "", X3:Z3 = ""), "ok", "CONFLICT")
Any ideas? Thanks!