AND Excel Function (Table of Contents)
AND Function in Excel
AND function in Excel is categorized as a logical function; it returns two values only that are TRUE and FALSE. This AND in excel tests the condition that is specified and returns TRUE, if conditions are met as TRUE, else it returns FALSE. This function is often used with other Excel functions, AND in Excel can significantly broaden the abilities of the worksheet.
And Formula in Excel
This AND Formula could also be written as
AND( condition1, [condition2],…)
Recommended Courses
Explanation of AND Function in Excel
logical 1 is the first condition or the logical value to evaluate
logical 2 is the optional argument, is the second condition or logical value to evaluate
There can be more logical expressions (conditions) to test depending on the situations and requirement.
AND function in Excel returns TRUE if all conditions are TRUE. It returns FALSE if any of the condition is FALSE.
If all the logical expressions evaluate to TRUE (first case), the AND function in excel will return TRUE and if any of the logical expression evaluates to FALSE (second, third and fourth case), the AND in excel will return FALSE.
If the logical expression argument evaluates to numbers, instead of Boolean logical value TRUE/FALSE, the value zero is treated as FALSE and all non-zero value as TRUE.
And function in excel is often used with functions like IF, OR and other functions.
How to Use AND Function in Excel
AND Function in Excel is very simple and easy to use. Let’s understands the working of AND Function in excel with examples.
AND in Excel Example #1
There are 10 players and each have to clear all 3 levels to be a winner, that is if the player clear level 1, level 2 and level 3, he/she will be a winner else if fails to clears any of the level he/she will fail and will not be declared as a winner.
4.9 (1,353 ratings)
We will use the AND function on excel to check if any of the levels is not clear he/she is not a winner then. So, applying the AND formula in E column.
Output:
Player 2 and player 10 have cleared all the levels, hence all logical conditions are TRUE, therefore, the AND Excel functions gave the output TRUE and for rest if any level out of all three was not cleared the logical expression evaluated as FALSE and the AND in excel resulted in FALSE output.
AND in Excel Example #2
Using AND Excel function with IF function
There is a list of students with their percentages and we want to find out the grades, where the grade criteria are shown below in the table:
If the percentage is greater than 90%, then grade will be A+, when the percentage is greater than or equal to 90% and less than 80% then grade will be A, and similarly, other Grades based on percentage and a student is Fail is percentage is less than 40%.
Formula that we will use is
=IF(B2>90,”A+”,IF(AND(B2<=90,B2>80),”A”,IF(AND(B2<=80,B2>75),”B+”,IF(AND(B2<=75,B2>70),”B”,IF(AND(B2<=70,B2>60),”C+”,IF(AND(B2<=60,B2>50),”C”,IF(AND(B2<=50,B2>40),”D”,”FAIL”)))))))
We have used Nested IF’s with multiple AND excel functions to compute the Grade of the student.
IF formula tests the condition and gives the output, for the condition value if TRUE else it returns the value if FALSE.
=if(logical_test, [value_if_TRUE],[value_if_FALSE])
First logical test, in this case, is B2>90, if this is TRUE then Grade is ‘A+’, if this condition is not TRUE if checks for the statement after comma and it again entered another if condition, in which we have to test 2 conditions that is if percentage is greater than 80 and percentage less than or equal to 90 so, logical statements are
B2<=90, B2>80
Since we have to test two conditions together we have used AND Excel function. So, if B2<=90 and B2>80, is TRUE the Grade will be ‘A’, if this condition is not TRUE IF checks for the statement after the comma and it again enters another IF condition and will continue to check each statement till the last bracket closes. In the last IF statement it checks, percentage <=50 and percentage >40, hence last IF statement evaluates Grade ‘D’ else evaluate ‘FAIL’.
AND in Excel Example #3
Using AND excel function with IF function
There is a list of employees and the sale amount in Column B, on the basis of their sale amount the incentives are allotted to each employee. Sale incentive criteria are
We need to calculate the incentive of each employee based on his performance for cracking the sale base on the criteria mentioned above in the table
Roman made a sale of $3000, he will receive an incentive amount of $400 and David and Tom were not able to even crack $1000 sale the bare minimum sale criteria for an incentive, hence they will not get any incentive.
Formula that we will use is
=IF(AND(B2>=3000),400,IF(AND(B2>=2000,B2<3000),200,IF(AND(B2>=1500,B2<2000),150,IF(AND(B2>=1000,B2<1500),100,0))))
We have again used Nested IF conditions with multiple AND excel function testing the all the logical condition together in the formula above to compute the sale incentive of the employee based the sale amount that he/she made.
David and Tom were not able to meet the incentive criteria hence their incentive amount is $0.
Nesting of AND Function in Excel
Nesting means using the AND in excel as an argument in the function itself. Nesting functions in Excel refer to using one function inside another function. Excel allows you to nest up to 64 levels of functions.
AND in Excel Example #4
There is a list of candidates who appeared for posting in Army for which there are certain selection conditions.
Eligibility Criteria: Age has to be greater than or equal to 18 but less than 35 years with a height greater than 167 cms, eyesight has to be normal and has successfully completed the long run task
Here, we will be using the Nested AND in Excel to check the eligibility criteria.
Formula that we will use is
=AND(B2=”Normal”,C2>167,D2=”Successful”,AND(E2>=18,E2<35))
As, you can see we have, used multiple logical conditions, to check if they evaluate to be TRUE and for age, we have again used AND function in Excel to check if age is greater than or equal to 18 and less than 35 years.
We have used AND function in excel inside AND function to check the age criteria.
Output:
Three candidates passed all the selection criteria, Ralph, Alex and Scott. Hence, their eligibility computes out as TRUE using the AND function in Excel and for rest of the candidates FALSE.
Limitation of AND Function in Excel
The AND function in Excel can test multiple conditions not exceeding more than 255 conditions. In Excel version 2003, the AND in excel could test up to 30 arguments, but in Excel version 2007 and later it can handle up to 255 arguments.
The AND function in excel returns #Value! Error if logical conditions are passed as a text or string.
Recommended Articles
This has been a guide to AND Function in Excel. Here we discuss the AND Formula in Excel and how to use AND Function in Excel along with practical examples and downloadable excel templates. You may also look at these useful functions in excel –
- VBA Boolean Data Type
- How to Use IF AND Formula in Excel?
- How to use Logical Function in Excel?
- Nested IF
- Fill Handle in Excel
- Excel Record Macros
- IF Excel Function
- OR Excel Function
- 35+ Courses
- 120+ Hours
- Full Lifetime Access
- Certificate of Completion