Forum Discussion
SuperCal99
5 years agoHelper I
Finding Ids across multiple columns
Hi, I have been asked to compare if a specific id is present across a number of years - yes and no means they are present, blank means they are not present. Below is an example of what i need - ...
Tanushree_Kapse
5 years agoImpactful Individual
Hi SuperCal99 ,
You can create a calculated column using the IF condition as mentioned below:
e = IF(AND(AND(b=" ",c="No"),d="Yes"),"Yes",
IF(AND(AND(b=" ",c=" "),d="Yes"),"No",
IF(AND(AND(b=" ",c=" "),d="Yes"),"No",
IF(AND(AND(b="No ",c=" "),d="Yes"),"Yes",
IF(AND(AND(b=" ",c="Yes"),d="No"),"No",blank())))))
I hope this helps!
Did I answer your question? Mark my post as a solution!