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
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
Calculates mean across all subjects. Add ROUND for cleaner display: =ROUND(AVERAGE(B2:B6), 1)
Formula 3: IF — Pass or Fail Status
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
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
Track improvement: is your MIN score going up each semester?
Formula 6: RANK — Your Class Position
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
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
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
Or if maximum marks vary: =B2/C2 where C2 is maximum possible marks.
Formula 10: GPA Calculator
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
- Conditional formatting: Red for failing grades, green for top scores
- Charts: Insert → Bar Chart to visualize grade trends per semester
- Freeze top row: View → Freeze Panes → Freeze Top Row (keeps headers visible)
- Print area: Page Layout → Print Area → Set Print Area for clean printouts