Chapter 1
Chapter 1
1. ARRY Formulas
What is an Array Formula?
An array formula allows you to perform multiple calculations in one
formula. An array is a group of values, and with array formulas, you can
perform operations on each value in the array at once.
2. IF Function
The IF function allows you to perform a test and return one value if
true, and another value if false.
Syntax: =IF(condition, value_if_true, value_if_false)
Example: =IF(A1 > 10, “Yes”, “No”)
If the value in A1 is greater than 10, it returns "Yes". Otherwise, it
returns "No".
Nested IF: =IF(A1 > 10, “High”, IF(A1 > 5, “Medium”, “Low”))
4. INDEX-MATCH
INDEX and MATCH together are a more flexible alternative to VLOOKUP.
While VLOOKUP only works when the lookup column is on the left of the
return column, INDEX-MATCH can look up values anywhere in the table.
6. COUNTIF
COUNIF:
The COUNTIF function counts the number of cells that meet a
specific condition.
Syntax: =COUNTIF(range, criteria)
Example: A B
1 Name Sales
2 John 200
3 Alice 500
4 Bob 100
5 Charlie 400
8. CONCATENATE
• CONCATENATE: Joins multiple text strings into one.
Example: =CONCATENATE(“Hello”, “ ”, “World”)
9. AND, OR, NOT
These functions allow you to perform logical test.
• AND: Check both conditions, if both conditions true it’s
return TRUE else return FALSE.
• OR: Check both conditions, if any condition true it’s return
TRUE else return FALSE.
• NOT: If condition not true then it’s return TRUE else FALSE.
Example:
A B C
1 Name Sales Experience
2 John 600 4
3 Alice 400 5