Whether you're in school, college, or preparing for your first job — Excel skills give you a real advantage. You don't need to learn hundreds of formulas. Just these 10 cover 95% of what students actually need.

Formula 1: SUM — Total Your Marks

=SUM(B2:B6)

Add up all your subject marks instantly. Shortcut: click below a column of numbers and press Alt + = to auto-insert SUM.

Formula 2: AVERAGE — Your Overall Score

=AVERAGE(B2:B6)

Calculates mean across all subjects. Add ROUND for cleaner display: =ROUND(AVERAGE(B2:B6), 1)

Formula 3: IF — Pass or Fail Status

=IF(B2>=40, "Pass", "Fail")

Auto-labels each subject as Pass or Fail. For letter grades: =IF(B2>=90,"A",IF(B2>=80,"B",IF(B2>=70,"C","F")))

Formula 4: COUNTIF — Count Your As

=COUNTIF(C2:C10, "A")

Counts how many subjects you got an A in. Also great for attendance: =COUNTIF(D:D, "Present")

Formula 5: MAX and MIN — Best and Worst Score

=MAX(B2:B6) -- Highest mark =MIN(B2:B6) -- Lowest mark

Track improvement: is your MIN score going up each semester?

Formula 6: RANK — Your Class Position

=RANK(B2, B$2:B$30, 0)

Shows where you rank in the class. 0 = descending (1st place = highest score). The $ locks the class range when copying to other cells.

Formula 7: VLOOKUP — Find Any Student

=VLOOKUP(15, A2:C100, 3, FALSE)

Finds roll number 15 in column A and returns their score from column C. Eliminates scrolling through hundreds of rows.

Formula 8: DATEDIF — Days Until Exams

=DATEDIF(TODAY(), "2026-06-15", "D")

Replace "2026-06-15" with your exam date. Updates automatically every day — a constant countdown reminder. Add: =IF(DATEDIF(TODAY(),"2026-06-15","D")<7,"STUDY NOW!","On schedule")

Formula 9: PERCENTAGE

=B2/100 (then format the cell as percentage)

Or if maximum marks vary: =B2/C2 where C2 is maximum possible marks.

Formula 10: GPA Calculator

Column A: Subject Column B: Marks (out of 100) Column C: Credit hours Column D: =IF(B2>=90,4,IF(B2>=80,3.5,IF(B2>=70,3,IF(B2>=60,2.5,1)))) Column E: =C2*D2 (credit × grade points) GPA Cell: =SUM(E:E)/SUM(C:C)
💡 Career Tip

Build a grade tracker with these formulas and show it in your portfolio or interview. "I built my own GPA tracker in Excel" immediately impresses hiring managers — it shows you're proactive and practical.

Make It Look Professional

Try FormulaZa — Free AI Excel Tool

Type what you want in plain English → get the exact formula. Free, no signup required.

Generate Formula Free →