Forum Discussion
Serdet
May 07, 2021Copper Contributor
Multiple Condition IF Statement
Hi All, I have a dataset similar to the below; Mech Complete? Scaffold Erected Insulation Removed WOL Raised Good to Go? Yes N/A Yes N/A Yes Yes N/A N/A N/A Ye...
- May 07, 2021
To change the check on empty string the formula could be
=IF(ISNA(XMATCH("",AF3:AI3)), "Yes", "N/A")In attached file I changed K3 to test.
SergeiBaklan
May 07, 2021Diamond Contributor
Elliot, glad to help. Have a nice weekend too.
Serdet
May 14, 2021Copper Contributor
Hi Sergei,
I have now added a new column which has to come into the equation and was wondering if you could give me a helping hand.
A new column called 'On Hold' has been added to the end of the table (let's say column Z).
If fields within this column state 'On Hold' I need the previous 'Good to Go' column to state "N/A".
I hope this is all clear.
Cheers
Elliot
- SergeiBaklanMay 15, 2021Diamond Contributor
You may wrap the formula with one more condition
=IF(Z3="On Hold", "N/A", IF(ISNA(XMATCH("",AF3:AI3)), "Yes", "N/A"))- SerdetMay 17, 2021Copper ContributorHi Sergei,
That works great. Thank you.
Elliot Serdet- SergeiBaklanMay 17, 2021Diamond Contributor
Serdet , you are welcome