Long thread title but I didn't know how to put it otherwise.
I need to compare values in two columns.
The results yielded should look like this:
-Value of C if the values are identical (empty or value present)
-"C!" or "Z!" if column C or Z is empty but the other contains a value
-"C" or "Z" if value in column C or Z is greater, respectively
I can do this easily by using IF formulas but was wondering whether there is an easier way.
This is what I am using right now:
=IF(C1=Z1;C1;IF(C1>Z1;IF(Z1="";"Z!";"Z");IF(C1="";"C!";"C")))
I need to do this as simply as possible to allow coworkers to understand the formula and adapt it for their departments.
I need to compare values in two columns.
The results yielded should look like this:
-Value of C if the values are identical (empty or value present)
-"C!" or "Z!" if column C or Z is empty but the other contains a value
-"C" or "Z" if value in column C or Z is greater, respectively
I can do this easily by using IF formulas but was wondering whether there is an easier way.
This is what I am using right now:
=IF(C1=Z1;C1;IF(C1>Z1;IF(Z1="";"Z!";"Z");IF(C1="";"C!";"C")))
I need to do this as simply as possible to allow coworkers to understand the formula and adapt it for their departments.