Forum Discussion
Archie077
Aug 11, 2020Copper Contributor
If and ISText formula
hello everyone Good day. https://1drv.ms/x/s!An7MAXsT8f3LhCEcu353KfHzIMZz?e=dPgx5Q I'm currently stuck in my formula, And i need to incorporate logics #4 to #6 to this formula set. =IF(ISB...
Riny_van_Eekelen
Aug 12, 2020Platinum Contributor
Archie077 You need to build your formula, starting with the last criteria. If "valid" and all other cells contain text, then "Closed" and so on. If you don't do that, once the third condition is met it will always returns "in progress" and never evaluate the last three IF statements. You may also consider using IFS. That would then look something like this:
=IFS(logic6,"closed",logic5,"reopen",logic4,"assigned",logic3,"in progress",logic2,"closed",logic1,"new")Not convinced though that this is the most effective way to achieve your ultimate goal. Would need to see your actual schedule to recommend possible alternatives.
Archie077
Sep 01, 2020Copper Contributor
Riny_van_Eekelen thank you, i was able to get it