Feb 08, 2021 05:01 PM
I want to create an airtable column that will say Yes if two other columns are identical, say No of those other columns are not identical, and say N/A if one of the columns is empty. Is there a way to do this?
For example:
Column A says Cow
Column B says Cow
So conditionally formatted Column C says Yes
Column A says Cow
Column B says Duck
So conditionally formatted Column C says No
Column A says A
Column B is blank
So conditionally formatted Column C says N/A
I’ll take any solution, doesn’t have to be conditional formatting.
Thanks ahead!
Solved! Go to Solution.
Feb 08, 2021 05:15 PM
Welcome to the community, @Dena_Mendelsohn! :slightly_smiling_face:
This formula should work for you:
IF(
AND(A,B),
IF(A=B,"Yes","No"),
"N/A"
)
Feb 08, 2021 05:15 PM
Welcome to the community, @Dena_Mendelsohn! :slightly_smiling_face:
This formula should work for you:
IF(
AND(A,B),
IF(A=B,"Yes","No"),
"N/A"
)
Feb 09, 2021 08:26 AM
Thanks @ScottWorld! If my columns are actually sentences (rather than “A” or “B”) do I just put the sentence column name in {brackets}? Very much appreciate your help on this!
Feb 09, 2021 08:33 AM
Yes, that’s correct!
Feb 09, 2021 09:48 AM
This works! Thank you @ScottWorld!