Formula IFS return values from other columns
Hi, i am trying to set a new column that should return EAS or ETS text depending of what it is in column named "ETS", but i want to add another if that return a value from column "Business Dropdown" if the column ETS is blank. This is the formula that i wrote now very simple and it is running well, but it is missing the argument if the column ETS is blank then go to column "Business dropdown" and return that value. Thanks for your help.
=IF(ETS@row = "EAS", "EAS", IF(ETS@row = "ETS", "ETS"))
Best Answer
-
Hi @Raul Cabrera ,
Give this try.
=IF(ETS@row = "", [Business_Dropdown]@row, IF(ETS@row = "EAS", "EAS", IF(ETS@row = "ETS", "ETS")))
Hope this helps,
Dave
Answers
-
Hi @Raul Cabrera ,
Give this try.
=IF(ETS@row = "", [Business_Dropdown]@row, IF(ETS@row = "EAS", "EAS", IF(ETS@row = "ETS", "ETS")))
Hope this helps,
Dave
Help Article Resources
Categories
Check out the Formula Handbook template!