Comprehensive List of 100 Advanced Excel Functions Along With Brief
Comprehensive List of 100 Advanced Excel Functions Along With Brief
Logical Functions
38. IF: Checks whether a condition is met, and returns one value if TRUE and another value if
FALSE.
39. IFS: Checks multiple conditions and returns a value corresponding to the first TRUE
condition.
40. AND: Returns TRUE if all arguments are TRUE.
41. OR: Returns TRUE if any argument is TRUE.
42. NOT: Reverses the logical value of its argument.
43. SWITCH: Evaluates an expression against a list of values and returns the result
corresponding to the first matching value.
44. IFERROR: Returns a value you specify if a formula evaluates to an error; otherwise, it
returns the result of the formula.
45. IFNA: Returns a value you specify if an expression resolves to #N/A; otherwise, it returns
the result of the expression.
46. XOR: Returns a logical Exclusive OR of all arguments.
=IF(A1 > 10, "Yes", "No")
=IFS(A1 > 10, "High", A1 > 5, "Medium", TRUE, "Low")
=AND(A1 > 0, B1 > 0)
=OR(A1 > 0, B1 > 0)
=NOT(A1 > 0)
=SWITCH(A1, 1, "One", 2, "Two", 3, "Three", "Other")
=IFERROR(A1/B1, "Error")
=IFNA(VLOOKUP("Apple", A2:B10, 2, FALSE), "Not Found")
=XOR(A1 > 0, B1 > 0)