I am trying to highlight the entire row of a table if three conditions are met. That is, if the word "Yes" appears in cells E5, F5, and G5, then I want to format that row. I tried using:
=IF(AND($E5="Yes",$F5="Yes",$G5="Yes")) - Excel doesn't appear recognize this as a formula within CF
=IFS($E5="Yes",$F5="Yes",$G5="Yes") - Excel says there are not enough arguments in this formula
=$E5=IFS($E5="Yes",$F5="Yes",$G5="Yes") - is not recognized as a formula
=$E5="Yes" - highlights the row but I only want to highlight it if all three conditions are met
Any assistance will be greatly appreciated.
Thanks
=IF(AND($E5="Yes",$F5="Yes",$G5="Yes")) - Excel doesn't appear recognize this as a formula within CF
=IFS($E5="Yes",$F5="Yes",$G5="Yes") - Excel says there are not enough arguments in this formula
=$E5=IFS($E5="Yes",$F5="Yes",$G5="Yes") - is not recognized as a formula
=$E5="Yes" - highlights the row but I only want to highlight it if all three conditions are met
Any assistance will be greatly appreciated.
Thanks