Nated Excel Notes
Nated Excel Notes
Example:
“Please Display yes if the
number is greater than 10 .”
=COUNT(A1:A10)
CountIf Counts the number of cells that =COUNTIF(range, criteria)
meet a specified condition.
Example:
“count how many students
scored 75 or Higher”
=COUNTIF(A1:A10, ">=75")
SumIf Adds up the cells that meet a =SUMIF(range, criteria,
specified condition. [sum_range])
Example:
=SUM(A1:A10)
Max Returns the largest number in a =MAX(range)
range.
Example
“ find the highest mark”
=MAX(A1:A10)
Min Returns the smallest number in a =MIN(range)
range.
Example:
“ find the lowest mark”
=MIN(A1:A10)
Average Calculates the average of a =AVERAGE(range)
range of numbers.
Example:
“find the average mark”
=AVERAGE(A1:A10)
Round Rounds a number to a specified =ROUND(number, num_digits)
number of digits.
Example:
“round the number in cell A1 to 2
digits”
=ROUND(A1, 2)
Small Returns the k-th smallest number =SMALL(range, k)
in a range.
Example:
“find the 2nd Smallest number”
=COUNTBLANK(A1:A10)
=RANDBETWEEN(1, 100)
1. Addition:
Task: Add the values in cells A1 and B1.
Example: If A1 contains 5 and B1 contains 10, enter =A1+B1 in another cell, like C1.
Result: =A1+B1 will display 15.
2. Subtraction:
Task: Subtract the value in B1 from the value in A1.
Example: If A1 contains 10 and B1 contains 4, enter =A1-B1 in C1.
Result: =A1-B1 will display 6.
3. Multiplication:
Task: Multiply the values in A1 and B1.
Example: If A1 contains 3 and B1 contains 7, enter =A1*B1 in C1.
Result: =A1*B1 will display 21.
4. Division:
Task: Divide the value in A1 by the value in B1.
Example: If A1 contains 20 and B1 contains 4, enter =A1/B1 in C1.
Result: =A1/B1 will display 5.
5. Percentage:
Task: Calculate what percentage of A1 is B1.
Example: If A1 contains 50 and B1 contains 10, enter =B1/A1*100 in C1.
Result: =B1/A1*100 will display 20%.
6. Power:
Task: Raise the value in A1 to the power of the value in B1.
Example: If A1 contains 2 and B1 contains 3, enter =A1^B1 in C1.
Result: =A1^B1 will display 8.
Example Spreadsheet:
Notes:
A B C D
Cell References: By using references like A1,
5 10 =A1+B1 15 B1, etc., Excel dynamically updates the results
10 4 =A2-B2 6 if the values in the referenced cells change.
3 7 =A3*B3 21 Arithmetic Operators:
20 4 =A4/B4 5 + for addition
50 10 =B5/A5*100 20% - for subtraction
2 3 =A6^B6 8 * for multiplication
/ for division
^ for power/exponentiation