Friday, May 17

IF With And Function To Get Result From Multiple Criteria

To get the specific output by matching the multiple criteria we can use Logical IF With And Function. The Logical IF used to populate the result if the AND function result in True or False. The AND function check the two matching criteria provided to evaluate the condition and result in TRUE or FALSE.

Here we are checking that if the student name is Juan and the subject is English the result should be “Selected” else “Not Eligible”. We can also provide the reference in place of “Selected” And “Not Eligible”. Please check the image below.

FORMULA : =IF(AND(A3=”Juan”,B3=”English”),”Selected”,”Not Eleigible”)
FORMULA : =IF(AND(A3=”Juan”,B3=”English”), A4,”Not Eleigible”)

Leave a Reply

Your email address will not be published. Required fields are marked *