Excel Formulas
Excel Formulas
Detailed Explanations
1. SUM
Example: =SUM(A1:A10)
Explanation: Adds all the numbers in the specified range (A1 to A10).
2. AVERAGE
Example: =AVERAGE(A1:A10)
3. IF
4. VLOOKUP
Explanation: Searches for a value in the first column and returns data from the
specified column in the same row.
5. HLOOKUP
Explanation: Looks up a value in the first row and returns a value from the specified row.
6. INDEX
Example: =INDEX(A1:C10, 2, 3)
Explanation: Retrieves the value from the 2nd row and 3rd column of the specified
range.
7. MATCH
8. LEN
Syntax: =LEN(text)
Example: =LEN("Excel")
9. LEFT
Example: =LEFT("Excel", 3)
10. RIGHT
Example: =RIGHT("Excel", 2)
12. TRIM
Syntax: =TRIM(text)
Explanation: Removes extra spaces, leaving only single spaces between words.
13. UPPER
Syntax: =UPPER(text)
Example: =UPPER("excel")
14. LOWER
Syntax: =LOWER(text)
Example: =LOWER("EXCEL")
15. PROPER
Syntax: =PROPER(text)
16. NOW
Syntax: =NOW()
Example: =NOW()
17. TODAY
Syntax: =TODAY()
Example: =TODAY()
18. ROUND
Example: =ROUND(2.567, 2)
Example: =ROUNDUP(2.123, 2)
20. ROUNDDOWN
Example: =ROUNDDOWN(2.567, 2)
21. COUNT
Example: =COUNT(A1:A10)
22. COUNTA
Example: =COUNTA(A1:A10)
23. COUNTIF
24. TEXT
26. REPLACE
Explanation: Replaces a part of the text. This example replaces the first two characters
with "Sp" (result: "Spel").
27. SUBSTITUTE
28. ISNUMBER
Syntax: =ISNUMBER(value)
Example: =ISNUMBER(A1)
29. ISTEXT
Syntax: =ISTEXT(value)
Example: =ISTEXT(A1)
30. ISBLANK
Syntax: =ISBLANK(value)
Example: =ISBLANK(A1)
Example: =POWER(3, 2)
Explanation: Raises the number to the specified power (result: 32=93^2 = 932=9).
32. SQRT
Syntax: =SQRT(number)
Example: =SQRT(16)
33. MOD
Example: =MOD(10, 3)
34. ABS
Syntax: =ABS(number)
Example: =ABS(-7)
35. CEILING
Example: =CEILING(4.2, 1)
Explanation: Rounds the number up to the nearest multiple of the significance (result:
5).
36. FLOOR
Explanation: Rounds the number down to the nearest multiple of the significance
(result: 4).
38. TEXTJOIN
Explanation: Joins text in the range A1 to A3, separated by a comma, and ignores empty
cells.
39. SORT
Example: =SORT(A1:A10, 1, 1)
40. SEQUENCE
Example: =SEQUENCE(5, 1, 1, 1)
41. RAND
Syntax: =RAND()
Example: =RAND()
Explanation: Generates a random integer between the specified bottom and top values.
43. PMT
Explanation: Calculates the payment for a loan based on constant payments and
interest rate.
44. XLOOKUP
Explanation: Searches for a value in a range and returns the corresponding value from
another range.
45. SUBTOTAL