Microsoft Excel is one of the most useful tools for students. You can use it to manage marks, prepare reports, plan a budget, and organize data. However, to use Excel well, you must first learn some basic Excel formulas.
Excel formulas do the calculations for you. Instead of using a calculator again and again, you can type a formula once. Then Excel shows the answer in a second. As a result, you save time and avoid mistakes.
In this blog, we will explain the most important Excel formulas for students in simple language. Moreover, you will find easy examples, a quick reference table, and answers to common questions about Excel formulas.
What Are Excel Formulas?
An Excel formula is an instruction. It tells Excel what to calculate. Every formula starts with an equal sign (=). For example, you can type this in any cell:
=A1+B1
This formula adds the values in cells A1 and B1. Suppose A1 has 50 and B1 has 30. In that case, Excel will show 80.
Similarly, you can use Excel formulas for subtraction, multiplication, division, counting, and finding averages. You can also use them to check conditions and to search for data. Many Excel formulas use a function. A function is a ready-made formula, such as SUM or AVERAGE. Therefore, functions make Excel formulas shorter and easier to use.
Why Should Students Learn Excel Formulas?
Learning Excel formulas helps students in school, in college, and later at work. Here are some important benefits:
- You can finish calculations in less time.
- You can find marks, totals, and percentages quickly.
- You can prepare result sheets and attendance sheets easily.
- You can create a monthly budget or expense tracker.
- You make fewer calculation mistakes.
- You build useful computer skills for jobs and interviews.
In addition, Excel formulas give you a strong base for advanced Excel and data analysis.
12 Important Excel Formulas Every Student Should Know
Excel has hundreds of functions. However, students do not need to learn all of them at once. First, start with the most common Excel formulas given below. Then, move to advanced ones slowly.
1. SUM Formula
SUM is the most popular of all Excel formulas. It adds a group of numbers.
Example: =SUM(B2:B6)
If B2 to B6 contain the marks of five subjects, this formula gives the total marks.
2. AVERAGE Formula
AVERAGE finds the average of a group of numbers. Because of this, it is very useful for result sheets.
Example: =AVERAGE(B2:B6)
3. MAX Formula
MAX finds the highest value in a range. For example, a teacher can use it to find the topper of a class.
Example: =MAX(B2:B20)
4. MIN Formula
MIN works in the opposite way. It finds the lowest value in a range. Together, MAX and MIN are simple but powerful Excel formulas for checking results.
Example: =MIN(B2:B20)
5. COUNT Formula
COUNT tells you how many cells contain numbers. It ignores text and empty cells.
Example: =COUNT(B2:B20)
6. COUNTA Formula
COUNTA counts all cells that are not empty. Unlike COUNT, it also counts text. So, you can use it to count how many student names are in a list.
Example: =COUNTA(A2:A20)
7. IF Formula
IF is one of the most useful Excel formulas for making decisions. It checks a condition. Then it shows one result if the condition is true and another result if it is false.
Example: =IF(B2>=40,”Pass”,”Fail”)
If the marks in B2 are 40 or more, Excel shows Pass. Otherwise, it shows Fail.
8. COUNTIF Formula
COUNTIF counts only those cells that meet your condition.
Example: =COUNTIF(B2:B20,”>=40″)
This formula counts how many students got 40 marks or more.
9. SUMIF Formula
SUMIF adds only those values that match a condition. For example, you can add the expenses of one category.
Example: =SUMIF(A2:A10,”Food”,B2:B10)
Here, Excel adds the amounts in column B only when column A says Food.
10. ROUND Formula
ROUND cuts a number to the decimal places you want. As a result, your averages and percentages look clean.
Example: =ROUND(85.678,2)
The answer is 85.68.
11. CONCAT Formula
CONCAT joins the text of two or more cells. Suppose A2 has Rahul and B2 has Kumar.
Example: =CONCAT(A2,” “,B2)
The answer is Rahul Kumar.
12. VLOOKUP Formula
VLOOKUP searches for a value in the first column of a table. Then it returns information from the same row. For instance, you can enter a roll number and get the student name.
Example: =VLOOKUP(A2,E2:G20,2,FALSE)
The exact formula depends on how your data is arranged. Still, VLOOKUP is one of the Excel formulas that employers often ask about in interviews.

Quick Reference Table of Excel Formulas
Use this table for fast revision. It lists the main Excel formulas, their use, and one example each.
| Excel Formula | Main Use | Example |
| SUM | Adds numbers | =SUM(A1:A10) |
| AVERAGE | Finds the average | =AVERAGE(A1:A10) |
| MAX | Finds the highest value | =MAX(A1:A10) |
| MIN | Finds the lowest value | =MIN(A1:A10) |
| COUNT | Counts cells with numbers | =COUNT(A1:A10) |
| COUNTA | Counts cells that are not empty | =COUNTA(A1:A10) |
| IF | Checks a condition | =IF(B2>=40,”Pass”,”Fail”) |
| COUNTIF | Counts cells that match a condition | =COUNTIF(B:B,”>=40″) |
| SUMIF | Adds values that match a condition | =SUMIF(A:A,”Food”,B:B) |
| ROUND | Rounds a number | =ROUND(A1,2) |
| CONCAT | Joins text | =CONCAT(A1,” “,B1) |
| VLOOKUP | Searches a table | =VLOOKUP(A2,E:G,2,FALSE) |
Practical Example: Student Marksheet Using Excel Formulas
Now let us see how Excel formulas work together. Imagine a student has these marks in five subjects, and the marks are stored in cells B2 to B6.
| Subject | Marks |
| English | 75 |
| Mathematics | 82 |
| Science | 78 |
| Computer | 90 |
| Hindi | 70 |
Next, you can use these Excel formulas to build the result. Assume the average is stored in cell B8.
| Task | Excel Formula | Result |
| Total marks | =SUM(B2:B6) | 395 |
| Average marks | =AVERAGE(B2:B6) | 79 |
| Highest marks | =MAX(B2:B6) | 90 |
| Lowest marks | =MIN(B2:B6) | 70 |
| Final result | =IF(B8>=40,”Pass”,”Fail”) | Pass |
As you can see, five simple Excel formulas can create a complete result sheet. Also, if you change any mark, Excel updates every answer by itself.
Common Mistakes While Using Excel Formulas
Beginners often make small errors. Fortunately, these mistakes are easy to fix once you know them.
- Forgetting the equal sign.Β Every formula must start with =.
- Choosing the wrong range.Β Always check that your cell range covers all the data.
- Missing quotation marks.Β Text inside a formula, such as “Pass”, needs quotes.
- Skipping FALSE in VLOOKUP.Β Use FALSE when you want an exact match.
- Deleting cells used in a formula.Β This can break your Excel formulas and show an error.
How Can Students Practice Excel Formulas?
Reading about Excel formulas is helpful. However, practice is much more important. Try to make these small projects:
- Student mark sheet:Β find the total, average, highest marks, and result.
- Monthly budget:Β calculate income, expenses, and the balance.
- Attendance sheet:Β count present days and absent days.
- Expense tracker:Β add expenses by category with SUMIF.
- Student database:Β find student details with VLOOKUP.
Also, practise for 20 to 30 minutes every day. Slowly, the Excel formulas will feel natural, and you will learn faster.
Learn Excel Formulas at Green Field Computer Academy
Do you want to learn Excel formulas with proper guidance? Then Green Field Computer Academy (GFCA) can help you. GFCA is a computer training institute on Basai Road, Gurugram, Haryana. It offers vocational computer courses for students, beginners, and job seekers.
At Green Field Computer Academy, you can learn Excel step by step, from basic concepts to advanced topics. Moreover, you practise Excel formulas with real examples such as marksheets, budgets, and attendance records. Because of this practical approach, you understand each formula instead of only memorizing it.
Whether you are a school student, a college student, or someone preparing for an office job, regular practice at Green Field Computer Academy can build your confidence with Excel.
Frequently Asked Questions About Excel Formulas
1. What are Excel formulas?
Excel formulas are instructions that tell Excel how to calculate or process data. They always start with an equal sign (=).
2. Which Excel formulas should beginners learn first?
Beginners should start with SUM, AVERAGE, MAX, MIN, COUNT, and IF. These Excel formulas cover most daily tasks.
3. Why are Excel formulas important for students?
Students can use Excel formulas to calculate marks, averages, percentages, budgets, and attendance. Therefore, they save time and reduce errors.
4. What is the most commonly used Excel formula?
SUM is the most commonly used of all Excel formulas, because adding numbers is a very common task.
5. What is the difference between COUNT and COUNTA?
COUNT counts only cells with numbers. On the other hand, COUNTA counts every cell that is not empty, including text.
6. Is VLOOKUP hard to learn?
No. VLOOKUP looks difficult at first, but it becomes easy with practice. Start with a small table and try different examples.
7. How can I learn Excel formulas quickly?
Learn a few Excel formulas at a time. Then practise them in real projects such as a marksheet, a budget, or an attendance sheet.
8. Should students learn advanced Excel formulas too?
Yes. After the basics, students can learn XLOOKUP, SUMIFS, COUNTIFS, IFERROR, and INDEX-MATCH. These advanced Excel formulas are useful for data analysis and office jobs.
Conclusion
Excel formulas make everyday work faster, easier, and more accurate. You do not need to learn hundreds of them at once. First, master SUM, AVERAGE, MAX, MIN, COUNT, IF, COUNTIF, and VLOOKUP. After that, practise them in real projects and move on to advanced Excel formulas step by step.
With regular practice and good training, Excel formulas become simple to use. If you want expert help, Green Field Computer Academy is a good place to start your Excel journey.
