How to write formula for?
When Crew column is either LT_PAP_010/LT_ELK_006 I'd like to have the Coord/ Appt Status column present 🟢 for LT_PAP_010 and ✅ for LT_ELK_006 when Coord/ Appt Date contains a DATE or Order Type column contains READY.
Thanks
Best Answer
-
@mromaire See if this formula works out. You can search for the emoji's online to change the ones I've used.
=IF(AND(Crew@row = "LT_PAP_010", OR(NOT(ISBLANK([Coord/ Appt Date]@row)), [Order Type]@row = "Ready")), "🟢", IF(AND(Crew@row = "LT_ELK_006", OR(NOT(ISBLANK([Coord/ Appt Date]@row)), [Order Type]@row = "Ready")), "✔️", " Neither"))
Answers
-
@mromaire See if this formula works out. You can search for the emoji's online to change the ones I've used.
=IF(AND(Crew@row = "LT_PAP_010", OR(NOT(ISBLANK([Coord/ Appt Date]@row)), [Order Type]@row = "Ready")), "🟢", IF(AND(Crew@row = "LT_ELK_006", OR(NOT(ISBLANK([Coord/ Appt Date]@row)), [Order Type]@row = "Ready")), "✔️", " Neither"))
-
=IF(AND(Crew@row = "LT_PAP_010", OR(NOT(ISBLANK([Coord/ Appt Date]@row)), [Order Type]@row = "Ready")), "🟢", IF(AND(Crew@row = "LT_ELK_006", OR(NOT(ISBLANK([Coord/ Appt Date]@row)), [Order Type]@row = "Ready")), "✅", " "))
This works perfect.
Can I add if Crew has wildcard LT in cell and no text in Crew Type column then Appt/ Coord Status would show 🟩
Help Article Resources
Categories
Check out the Formula Handbook template!