New

Admissions Open for ADCA & MDCAA 2026 Batch!

Apply Now
Knowledge 10 Min Read May 30,2026 3 Views

Top 25 MS Excel Formulas Every Accountant Must Know (2026)

Dinesh Sharma

Author

Top 25 MS Excel Formulas Every Accountant Must Know (2026)

Every accountant in India works with Excel - but there is a large gap between using Excel and using it well. The difference shows up in how long reconciliations take, how often errors appear in reports, and whether you can answer "can you do this in Excel?" with a yes or a no at interview. These 25 formulas are the ones that come up every week in real accounting work - from basic totals to GST reconciliation to payroll calculations.

Why Excel Formulas Matter More Than Ever for Accountants in 2026

Tally Prime is where you record transactions. Excel is where you analyse, reconcile, and report them. Almost every accounting workflow that involves more than one source of data - comparing GST data from Tally with the GSTN portal, reconciling bank statements, preparing MIS reports for management - happens in Excel. And in 2026, with AI tools like Microsoft Copilot in Excel, knowing the underlying formulas is what makes you capable of using the AI assistance effectively, rather than just hoping it does the right thing.

HCI's ADFA programme covers all 25 formulas in this list as part of the Advanced Excel module - with accounting-specific exercises on GST data, payroll sheets, and financial reconciliation.

Top 25 Excel Formulas for Accountants - Quick Reference Table

#FormulaWhat It DoesAccounting Use Case
1SUMAdds a range of numbersTotalling invoice amounts, salary columns, tax values
2SUMIFAdds numbers that meet one conditionTotal sales for a specific product code or customer
3SUMIFSAdds numbers that meet multiple conditionsTotal GST-eligible sales in a specific month for one state
4VLOOKUPSearches for a value and returns data from another columnFetching product prices, HSN codes, party GSTINs from master data
5XLOOKUPAdvanced lookup - searches in any direction, handles errors nativelyModern replacement for VLOOKUP in Excel 2019+
6IFReturns one value if condition is true, another if falseFlagging overdue invoices, marking GST-exempt transactions
7IFSHandles multiple conditions without nesting IF functionsCategorising transactions into multiple tax slabs
8COUNTIFCounts cells that meet one conditionCounting how many invoices are unpaid, pending, or overdue
9COUNTIFSCounts cells meeting multiple conditionsCounting invoices above ₹50,000 from a specific supplier in a date range
10INDEX + MATCHFlexible lookup - searches any column and returns any other columnLookups where VLOOKUP fails - return left column values
11TEXTConverts numbers/dates to formatted textFormatting invoice dates, displaying amounts as "₹1,25,000"
12CONCATENATE / TEXTJOINJoins text from multiple cellsCombining first name + last name, or building full addresses
13LEFT / RIGHT / MIDExtracts characters from text stringsExtracting state code from GSTIN (first 2 characters), invoice series
14TRIMRemoves extra spaces from textCleaning imported Tally data with trailing spaces that break VLOOKUP
15LENReturns the number of characters in a cellValidating that GSTINs are exactly 15 characters
16DATE / DATEIF / EDATEWorks with dates - calculates differences and adds monthsCalculating invoice due dates, ageing analysis, loan repayment schedules
17TODAY / NOWReturns current date / current date and timeAuto-updating daily reports, calculating days overdue from today
18ROUND / ROUNDUP / ROUNDDOWNRounds numbers to specified decimal placesRounding GST amounts, ensuring final invoice totals are paise-accurate
19IFERRORReturns a custom value instead of an errorReplacing #N/A errors in VLOOKUP columns with "Not Found" or zero
20MAX / MINReturns the largest / smallest value in a rangeFinding highest sales amount, lowest balance, maximum outstanding
21AVERAGE / AVERAGEIFCalculates the mean - with or without conditionsAverage invoice value per customer, average monthly expense
22Pivot Table (not a formula - a feature)Summarises large datasets by any grouping in secondsMonthly sales by product, GST liability by state, salary totals by department
23SUBTOTALCalculates totals that respect active filtersTotals that update when you filter by month, category, or party
24PMTCalculates loan EMI based on interest rate, periods, and principalEMI calculation for business loans, hire-purchase accounting
25Data Validation (not a formula - a feature)Restricts what can be entered in a cell - dropdown lists, number rangesStandardising data entry in shared accounting sheets - no typos in GST rates

The 5 Formulas Accountants Use Most - In Depth

The table above is your reference. These five are worth understanding more deeply because they come up in almost every accounting task.

SUMIFS is the workhorse formula for financial reporting. You will use it to answer questions like: "What is the total sales value for Customer ABC in April, excluding cancelled invoices?" The syntax is =SUMIFS(sum_range, criteria_range1, criteria1, criteria_range2, criteria2, ...) - you can stack as many conditions as needed. In GST reporting, SUMIFS is what you use to split total turnover by tax rate (5%, 12%, 18%, 28%) or by transaction type (B2B, B2C, exempt) from a raw export from Tally.

VLOOKUP and XLOOKUP are the connectors that make data from different sheets work together. Every time you export data from Tally - sales register, purchase register, ledger statement - you get a flat file that needs to be enriched with data from other sources: party GSTINs, HSN code descriptions, product categories. That enrichment is done with VLOOKUP or XLOOKUP. Master this and you halve the time spent on reconciliation tasks.

IF and IFS handle conditional logic. The accounting use case that trips up most people is flagging TDS deductibility: IF payment to a contractor exceeds ₹30,000 in a single payment or ₹1,00,000 in a year, TDS at 1–2% applies. You can build this rule directly into an Excel sheet that auto-flags transactions for TDS deduction. =IF(B2>30000,"TDS Applicable","Check Annual Total") is a starting point. IFS makes multi-condition versions cleaner.

Pivot Tables are the most powerful reporting tool in Excel and the one most students skip because it is not technically a "formula". Go to Insert → PivotTable. Drag the month field to Rows, the customer name to Columns, and the invoice amount to Values. You now have a month-wise, customer-wise sales summary that would take an hour to build manually - done in 60 seconds. Every management MIS report you will ever prepare starts with a Pivot Table.

IFERROR makes your spreadsheets professional. Without it, VLOOKUP errors show as ugly #N/A cells that confuse non-accountants. Wrap your VLOOKUP in IFERROR: =IFERROR(VLOOKUP(A2, MasterData!$A:$C, 2, FALSE), "Not in Master"). Now instead of #N/A, the cell shows "Not in Master" - which immediately tells you and your manager which items need to be added to the master data.

How to Learn These Formulas Fast - A Practical Approach

The mistake most self-learners make is reading about formulas without practising on real data. Here is a faster approach.

Download any previous month's expense sheet or bank statement from your accounts (or use sample data). Open Excel. Pick five formulas from the list above and build real calculations with that data - not textbook exercises, but actual totals, lookups, and conditional counts on numbers you recognise. This creates memory anchors that make the formula stick.

For VLOOKUP and SUMIFS specifically - which are the most commonly tested in accounting job interviews - practice building a mock sales reconciliation: one sheet with transaction data, another with a product/party master. Use VLOOKUP to pull master data into the transaction sheet. Use SUMIFS to create a month-wise summary. Run this exercise three times with different data sets and the formula will not confuse you in an interview.

At HCI, the ADFA and ADCA programmes cover Advanced Excel through exactly this kind of data-driven exercise - real accounting scenarios, not abstract formula memorisation. Students in our batches who had never used Excel beyond basic SUM are routinely handling VLOOKUP reconciliations within the first two months of training. See the ADCA programme or the accounting-focused ADFA programme for the Excel module details.

Want to master Advanced Excel for accounting work?
HCI's ADFA and ADCA programmes include hands-on Advanced Excel training with real accounting exercises - SUMIFS for GST data, VLOOKUP for reconciliations, Pivot Tables for MIS reports.
👉 Book a free counselling session to see the full Excel curriculum and confirm batch schedules.

Conclusion

These 25 formulas are not an exhaustive list of everything Excel can do - they are the ones you will use every week in real accounting work. SUMIFS for data slicing, VLOOKUP for master data linkage, IF for logic rules, Pivot Tables for management reporting, and IFERROR for clean, professional output. Build these five first. The remaining twenty follow naturally once you are comfortable with the core logic.

If you want to learn these formulas in the context of actual accounting workflows - GST data, payroll, bank reconciliation - book a free counselling session with HCI and ask about the Advanced Excel module inside our ADFA and ADCA programmes.

Author: Dinesh Sharma, Founder & CEO, Hindustan Computer Institute (MS Excel & AI Tools Expert)
Last Updated: May 2026

Confused about your career path?

Book a free 1-on-1 counseling session with our senior faculty. We'll help you choose the right course for your goals.

Book Free Session

Discussion (0)

Leave a Reply

Ready to Transform
Your Career?

Connect with us to find the perfect learning path. Tell us a bit about yourself so our senior counselors can guide you better.

1
About You
2
Interests
3
Details

Tell us about your background?

What kind of skills do you want to learn?

Where should we contact you?

Need help? Chat with us!