๐Ÿ’ก Excel Formula Mastery (Part 1): Basic Mathematical Formulas & Excel Formula Cheat Sheet

Welcome to Part 1 of the Excel Formula Mastery & Excel Formula Cheat Sheet series!
If youโ€™re new to Excel or looking to upgrade your spreadsheet skills, this guide is your best starting point.
Here, youโ€™ll discover 16 powerful and practical Excel formulas used for data analysis, business reports, and academic work.

Each formula comes with:

  • A short explanation
  • Practical examples
  • An exercise table to practice yourself

By mastering these Excel Formula Mastery & Excel Formula Cheat Sheet, youโ€™ll have a solid foundation to handle financial models, analytics, or any Excel project confidently.


๐Ÿงฎ 1. SUM() โ€“ Add Up Numbers Quickly

Description: Adds all numbers in a range. Use the SUM() function to calculate totals, such as sales, expenses, or scores.

ItemABCFormulaResult
1101520=SUM(A2:C2)45
251218=SUM(A3:C3)35
38725=SUM(A4:C4)40
461410=SUM(A5:C5)30
520515=SUM(A6:C6)40

Exercise Table:

TaskColumn DataFormula
Total for each rowCopy numbers from A2:C6=SUM(A2:C2) and drag down

๐Ÿ’ก Tip: SUM is the most-used formula in every Excel sheet โ€” itโ€™s the foundation of all calculations.


๐Ÿ“Š 2. AVERAGE() โ€“ Find the Mean Value

Description: Calculates the mean of numbers. Use AVERAGE() to find typical values like average marks, monthly sales, test scores or ratings.

ItemABCFormulaResult
1102030=AVERAGE(A2:C2)20
251525=AVERAGE(A3:C3)15
312820=AVERAGE(A4:C4)13.33
471421=AVERAGE(A5:C5)14
56912=AVERAGE(A6:C6)9

Exercise Table:

TaskColumn DataFormula
Find average for each rowCopy numbers from A2:C6=AVERAGE(A2:C2)

๐Ÿ”ฝ 3. MIN() / MAX() โ€“ Find Smallest or Largest

Description:

  • MAX() gives the largest number.
  • MIN() gives the smallest number

Useful for ranges like results, temperatures, scores, or prices.

ItemABCMIN FormulaMIN ResultMAX FormulaMAX Result
110520=MIN(A2:C2)5=MAX(A2:C2)20
27123=MIN(A3:C3)3=MAX(A3:C3)12
31468=MIN(A4:C4)6=MAX(A4:C4)14
451510=MIN(A5:C5)5=MAX(A5:C5)15
59117=MIN(A6:C6)7=MAX(A6:C6)11

Exercise Table:

TaskColumn DataFormula
Find MIN/MAX per rowCopy numbers from A2:C6=MIN(A2:C2) / =MAX(A2:C2)

๐Ÿงฉ 4. COUNT() / COUNTA() / COUNTBLANK() โ€“ Count Cells

Description:

  • COUNT() counts numeric cells
  • COUNTA() counts non-empty cells (numbers + text)
  • COUNTBLANK() counts empty cells
ItemABCCOUNT FormulaCOUNT ResultCOUNTA FormulaCOUNTA ResultCOUNTBLANK FormulaCOUNTBLANK Result
15“Hello”10=COUNT(A2:C2)2=COUNTA(A2:C2)3=COUNTBLANK(A2:C2)0
27“”“Yes”=COUNT(A3:C3)1=COUNTA(A3:C3)2=COUNTBLANK(A3:C3)1
3“”1215=COUNT(A4:C4)2=COUNTA(A4:C4)3=COUNTBLANK(A4:C4)1
4“”“”5=COUNT(A5:C5)1=COUNTA(A5:C5)1=COUNTBLANK(A5:C5)2
58“Hi”“”=COUNT(A6:C6)1=COUNTA(A6:C6)2=COUNTBLANK(A6:C6)1

Exercise Table:

TaskColumn DataFormula
Count numbers/non-empty/blanksCopy numbers/text from A2:C6COUNT(), COUNTA(), COUNTBLANK()

โœ–๏ธ 5. PRODUCT() โ€“ Multiply All Values

Description: Multiplies numbers in a range. Useful for calculating volumes, total combinations, or scaling values.

ItemABCFormulaResult
1234=PRODUCT(A2:C2)24
2152=PRODUCT(A3:C3)10
3333=PRODUCT(A4:C4)27
4261=PRODUCT(A5:C5)12
5522=PRODUCT(A6:C6)20

Exercise Table:

TaskColumn DataFormula
Multiply numbers per rowCopy numbers from A2:C6=PRODUCT(A2:C2)

โž— 6. MOD() โ€“ Get Remainders

Description: Returns the remainder after division. Useful for checking even/odd numbers or cycles.

NumberDivisorFormulaResult
103=MOD(A2,B2)1
72=MOD(A3,B3)1
154=MOD(A4,B4)3
125=MOD(A5,B5)2
96=MOD(A6,B6)3

Exercise Table:

TaskColumn DataFormula
Find remainder per rowCopy numbers/divisors=MOD(A2,B2)

โšก 7. ABS() โ€“ Absolute Value

Description: Returns the absolute value (positive number). Useful for profits/losses or deviations.

NumberFormulaResult
-10=ABS(A2)10
5=ABS(A3)5
-7=ABS(A4)7
0=ABS(A5)0
-3=ABS(A6)3

Exercise Table:

TaskColumn DataFormula
Convert negatives to positive-10, 5, -7, 0, -3=ABS(A2)

Use Case: Perfect for analyzing profit/loss or error margins in data.


๐Ÿ“ˆ 8. POWER() โ€“ Exponent Function

Description: Raises a number to a power. Use for exponents, growth calculations, and squares/cubes.

BaseExponentFormulaResult
22=POWER(A2,B2)4
33=POWER(A3,B3)27
52=POWER(A4,B4)25
43=POWER(A5,B5)64
62=POWER(A6,B6)36

Exercise Table:

TaskColumn DataFormula
Raise numbers to powerCopy Base & Exponent=POWER(A2,B2)

๐Ÿงฎ 9. SQRT() โ€“ Find Square Roots

Description: Returns the square root. Use for areas, distances, or variance calculations.

NumberFormulaResult
16=SQRT(A2)4
25=SQRT(A3)5
36=SQRT(A4)6
49=SQRT(A5)7
64=SQRT(A6)8

Exercise Table:

TaskColumn DataFormula
Find square rootsCopy numbers=SQRT(A2)

๐Ÿ”ข 10. ROUND(), ROUNDUP(), ROUNDDOWN()

Description:

  • ROUND โ†’ nearest value
  • ROUNDUP โ†’ always up
  • ROUNDDOWN โ†’ always down
NumberROUNDResultROUNDUPResultROUNDDOWNResult
4.67=ROUND(A2,1)4.7=ROUNDUP(A2,1)4.7=ROUNDDOWN(A2,1)4.6
3.141=ROUND(A3,2)3.14=ROUNDUP(A3,2)3.15=ROUNDDOWN(A3,2)3.14
7.89=ROUND(A4,0)8=ROUNDUP(A4,0)8=ROUNDDOWN(A4,0)7

Exercise Table:

TaskColumn DataFormula
Round numbers4.67, 3.141, 7.89ROUND(), ROUNDUP(), ROUNDDOWN()

๐Ÿ’ฒ 11. CEILING() / FLOOR()

Description: Rounds numbers to nearest multiple up or down. Useful for pricing, bins, or schedules.

NumberSignificanceCEILINGResultFLOORResult
75=CEILING(A2,B2)10=FLOOR(A2,B2)5
123=CEILING(A3,B3)12=FLOOR(A3,B3)12
144=CEILING(A4,B4)16=FLOOR(A4,B4)12

Exercise Table:

TaskColumn DataFormula
Round to nearest multiple7,12,14CEILING(), FLOOR()

๐ŸŽฒ 12. RAND() / RANDBETWEEN()

Description: Generates random numbers. RAND โ†’ decimal, RANDBETWEEN โ†’ integer. Useful for mock data or simulations.

FormulaResult (Example)
=RAND()0.483
=RANDBETWEEN(1,100)57
=RANDBETWEEN(10,50)23

Exercise Table:

TaskColumn DataFormula
Generate 10 random integersBlank=RANDBETWEEN(1,100)
Generate 5 random decimalsBlank=RAND()

๐Ÿ”ข 13. INT() โ€“ Round Down

Description: Rounds down to nearest integer. Useful for whole counts or truncating decimals.

NumberFormulaResult
5.9=INT(A2)5
7.8=INT(A3)7
-3.7=INT(A4)-4

Exercise Table:

TaskColumn DataFormula
Convert decimals to integers5.9, 7.8, -3.7INT(A2)

โš™๏ธ 14. EVEN() / ODD()

Description: Rounds numbers up to nearest even or odd number. Useful for sequences, bins, or grouping.

NumberEVENResultODDResult
3=EVEN(A2)4=ODD(A2)3
5=EVEN(A3)6=ODD(A3)5
12=EVEN(A4)12=ODD(A4)13

Exercise Table:

TaskColumn DataFormula
Round to nearest even/odd3, 5, 12EVEN(A2)/ODD(A2)

โœ… All 16 formulas are now merged with descriptions, big demo tables, and exercises. This is the 1st Part of Excel Formula Mastery & Excel Formula Cheat Sheet.

Previous Post

Leave a Reply

Your email address will not be published. Required fields are marked *

Our website brings you the convenience of instant access.

Help

Copyright

Privacy Policy

ยฉ 2025 Created with DSAISTUDY