I have a list of data in excel consisting of "Yes" and "No".
I need an IF statement that will only act on cells with the "Yes" value, and skip any cells with the "No" value.
For context, the 'value if true' clause of my IF statement is an indexmatchmatch which needs to return a value in the sheet based on the "Yes" or "No".
I understand this could have a simple solution using VBA, so if anyone has an excel based solution or VBA based solution they would be equally helpful.
I can add columns and rows to the dataset I am working with if needs be.
=IF(A1="Yes",<YourIndexMatchMatchFormulaHere>,"")