Skip to content
HomeBlogExcel in the AI era: still valuable or outdated?
Excel in the AI Era: still valuable — blog hero image

Excel in the AI era: still valuable or outdated?

Share:

10 min read

Short answer: Excel in the AI era still holds value — but only when placed in the right layer. Excel is the best tool for analysis and scenario modeling in the SME “tool triangle” of three layers: SaaS (daily operations) → Excel/BI (analysis and asking questions) → Python/SQL (bulk automation). AI like Microsoft 365 Copilot speeds up execution but cannot replace judgment on edge cases — those who know Excel deeply will know exactly where AI is right and where it needs a second check.

A logistics analyst once shared a meeting with their boss: “We need to learn Python. Excel is a tool from the previous generation.”

That's not wrong. But it's not accurate enough to guide a decision on what to learn next.

This article doesn't tell you to “keep using Excel” or “drop Excel and learn Python”. It offers a clearer thinking framework to answer that question in the context of your actual work — in an AI era that is changing how every tool works.


Ask the wrong question, and every answer will miss

“Is Excel still valuable?” is the wrong question. It's like asking “is the hammer still valuable in the age of power drills?” — the answer depends entirely on whether you're driving nails or boring holes.

A better question: Which class of problem does Excel solve, and does that class still appear in real work? Looked at that way, the picture is much clearer — and there's one more dimension few people add: compared to a purpose-built SaaS/app, where does Excel stand?


What Excel actually teaches you

When people say “knowing Excel”, they usually mean a set of functions: VLOOKUP, SUMIF, INDEX/MATCH, Pivot Table. But that's the surface layer.

What Excel forces you to build — if you use it seriously — is a specific kind of thinking: decomposing a business problem into verifiable calculation layers.

Take a concrete example. A real payroll file is not just “enter hours worked, get salary”. It has to handle, simultaneously: progressive personal income tax across seven brackets, social insurance contributions capped at the salary ceiling, company-specific allowance coefficients, per-department bonus/penalty rules, and edge conditions for probationary employees. Each variable needs to sit in the right place in the file's architecture, be traceable back to its source, and stay unaffected when someone edits an unrelated cell.

This is the Problem small-scale system design. Those who can solve this problem in Excel will have substantially stronger foundations when moving to Python or SQL — because they are already used to thinking in data flows, dependency chains, and separation of concerns before knowing the formal names.


SaaS is not Excel's competitor — they solve different problems

This is what the “Excel vs. modern tools” debate usually overlooks.

When a business moves from Excel to a dedicated HRM, accounting, or inventory system, they are not “upgrading Excel”. They are moving from a flexible thinking tool Switch to operational system with fixed workflows. These are two fundamentally different things.

CriterionDedicated SaaSExcel
Best fitRunning daily transactionsAnalysis and scenario modeling
Multiple Users✅ Good — permissions, audit trail⚠️ Hard — no version control
Ad-hoc questions❌ Limited — only built-in questions✅ Strong — ask any question
Scaling by transaction✅ Good — handles millions of records⚠️ Limited — slow beyond 1M rows
Deployment costHigh — SaaS fees + trainingLow — already in Office 365

SaaS is strong where the process is standardized, many people work on a single data source, there is an audit trail, and it scales. Accounting software like MISA or Fast handles journal entries and tax reporting better than any Excel file.

But SaaS has a hard limit: it only answers questions the software designer already thought of.

When the boss asks “if we raise prices by 5% but cut credit terms from 60 days to 45, what's the impact on next quarter's cash flow?” — no software answers that instantly. Because it's a scenario-analysis question, not an operational one. And that's exactly the territory where Excel still has no worthy rival.


The tool triangle: know which tool solves which problem

The SME tool triangle is a 3-layer model for small and mid-sized businesses: Operations layer (SaaS/app) — managing daily transactions, multi-user, requiring accuracy and consistency. Analysis layer (Excel/BI) — pulling data, asking questions, modeling scenarios, making decisions. Automation layer (Python/SQL/n8n) — handling high volume, repetition, connecting multiple data sources.

In reality, most SMEs run all three layers in parallel — whether they realize it or not:

LớpRight ToolsQuestions this layer answers
OperationsSaaS — MISA, Fast, HRM, WMS“What did we sell today? How much stock is left?”
AnalyzeExcel, Power BI, Google Sheets“If X changes, what happens to Y? What trend is emerging?”
AutomationPython, SQL, n8n, Make“How do we make this task run without a person?”

The problem for many SMEs today is using Excel for all three layers — out of convenience, habit, or lack of SaaS budget. The result: Excel files grow bigger, more fragile, and ever more dependent on the one person who understands their structure.

The right answer is not “replace Excel with SaaS”. The right answer is placing each tool in its correct layer.


AI inside Excel — what actually changes

Microsoft 365 Copilot and Google Gemini in Sheets can now write formulas from natural language, spot anomalies in a dataset, summarize trends, and generate pivot tables on demand. This is real acceleration.

But something is happening that few people notice: AI compresses execution time, not judgment time.

Testing Copilot on a real payroll file gave an interesting result. The gross salary formula: correct. The social insurance contribution formula at 8%: arithmetically correct. Contextually wrong — because Copilot didn't know that month applied a reduced rate under Resolution 68, and the phone allowance for that position is not part of the insurance base under the current decree.

AI gets the generic problem right. Your real problem usually has 3-5 edge conditions only insiders know. This creates a widening gap: people who understand Excel deeply use AI to accelerate and know exactly what to re-check. People who only use the surface accept AI output and miss the errors — because they have no mental model to compare against.

The same happens with AI-integrated SaaS. Accounting software can now auto-categorize expenses, suggest journal entries, even summarize finances in Vietnamese. But when it miscategorizes — and it will, on edge cases — the user needs enough background to spot and fix it. AI works the same way in every tool: it amplifies the capability of people who already have foundations, and creates hidden risk for those who don't.


Excel's real weaknesses

Excel has real structural weaknesses, and understanding them matters more than debating whether Excel is still usable.

WeaknessesReal-World RisksHow to Handle
No version controlThree people edit at once — no one knows who changed what, when, or whyStrict naming convention + daily backups; or move to Google Sheets for collaboration
Doesn't scale with large dataBeyond 1 million rows: slow and unstablePower Query helps partially; past a threshold, SQL is the right choice
Logic hidden in formulasA complex Excel file two years after its creator leaves = a black box with no documentationDocumentation sheet + formula comments + clear naming conventions

But these weaknesses are all problems of usage, not of the tool itself. Version control can be handled through disciplined naming and backup. The scale issue can be addressed by knowing when to switch tools — or by pulling data from SaaS into Excel for analysis instead of keeping everything in one place.


Three skill tiers — where are you?

Three Excel skill tiers: Tier 1 — Formula user (knows VLOOKUP, SUMIF, Pivot Table but the file has no architecture, must rebuild when the problem changes). Tier 2 — Functional user (builds a complete tool for their own use, but others can't maintain it). Tier 3 — Systems user (builds tools for others to use, sees clearly which layer Excel belongs to in the organization's tool triangle).

Tier 1 — Formula user

Knows VLOOKUP, SUM, nested IF, Pivot Tables. But when the problem changes, must rebuild from scratch because the file has no architecture. Problem to solve: learn to design files with separation of concerns — clearly split data input, calculation layer, and output display.

Tier 2 — Functional user

Builds a complete tool for personal use. The file runs well, but others don't understand the structure and can't maintain it. Problem to solve: documentation, naming conventions, Power Query for data transformation separate from formulas — and more importantly, knowing when to push data to SaaS instead of keeping everything in one file.

Tier 3 — Systems user

Builds tools for others, handles edge cases, and sees clearly which layer Excel belongs to in the organization's tool triangle. Next problem: design data flows between layers — SaaS as source, Excel as analysis layer, Python handling automation when needed.

Most people at Tier 1 think they're at Tier 2. This is the most common blind spot — and the reason the question “what to learn next” is usually asked before the question “where am I really” is answered.

Back to that analyst. After more conversation, it turned out their team's problem wasn't that Excel was weak — it was that they were using Excel for all three layers at once: operations, analysis, and a chunk of manual automation were all living in the same file. Python wouldn't solve that. Layered thinking solves it.

The real question isn't Excel, Python, or SaaS. The question is: which layer of problem are you solving, and which tool was designed for that layer?


Key Takeaways

  • Correct Question not “is Excel still valuable?” but “which tool does this layer of problem need?”
  • Tool Triangle: SaaS (operations) → Excel/BI (analysis) → Python/SQL (automation) — three layers, three different roles
  • SaaS doesn't replace Excel — they solve different problems: running transactions vs. modeling scenarios
  • AI amplifies, not replaces — Copilot speeds things up but doesn't know the edge conditions of your real problem
  • Excel's weaknesses are problems of usage, not of the tool itself — version control and documentation handle most of it
  • Most people at Tier 1 think they're at Tier 2 — recognizing that blind spot is the first step

PRACTICAL TOOLS

BEUP — Analysis templates and operating tools for small teams

Which tier are you at in the tool triangle? BEUP provides a kit of Excel templates, analysis dashboards, and a guide for building the 3-layer system for SMEs of 5-50 people — helping you use the right tool for the right problem from day one.

See Details →


Frequently asked questions

Is Excel still worth learning in the AI era?

Worth it — but learn the right things. Not more functions, but how to design a file with clear architecture: separating data input, calculation layer, and output display. Excel users at Tier 2-3 will be the most effective AI users, because they have the mental model to check AI output. Users who only know the surface will accept AI results without catching errors.

When should I use Excel, and when should I use SaaS?

Use SaaS when: many people need access to one data source, you need an audit trail, or transaction volume is high (daily sales, inventory, accounting). Use Excel when: asking ad-hoc questions, modeling “what-if” scenarios, or analyzing data pulled from SaaS. Rule: SaaS is the source of truth, Excel is where you ask questions — don't mix the two roles in one place.

Is Microsoft 365 Copilot in Excel actually effective?

Yes — provided you know how to check the results. Copilot writes formulas from natural language, summarizes trends, and builds pivot tables fast. But it doesn't know the edge conditions of your real problem: the latest social insurance decree, your company's specific bonus rules, or exceptions in each customer's contract. Users with a strong Excel foundation will gain a lot from Copilot; those without will create errors that are hard to spot.

Should I learn Python or Excel for data analysis in a small business?

Both, but in order and for the right problem. Excel first — to build the thinking muscle of decomposing a business problem into verifiable calculation layers. Python later — when the problem requires bulk processing, repetition, or connecting multiple data sources. In an SME of 5-50 people, most analysis problems still belong in good Excel — Python is most needed in the automation layer, not the analysis layer.

Our small business uses Excel for both operations and analysis — where do we start separating layers?

Start with the operations layer: pick 1-2 of the highest-transaction processes (sales, inventory, or accounting) and move them to a SaaS that fits your budget. Once SaaS is stable and is the trusted data source, use Excel to pull data out for analysis — at that point Excel will play the analysis role properly instead of doubling as operations. You don't need to do it all at once — separate layer by layer, process by process.

References: Microsoft — Microsoft 365 Copilot in Excel (2024) · Joel Spolsky — How Microsoft Lost the API War (essay, 2004) · Tiago Forte — Building a Second Brain (2022) · Peter Drucker — The Effective Executive (1967)

Stay Updated

Get insights on management, operations & digital assets delivered to your inbox.

Leave A Reply

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

Ready to Upgrade Your Operating System?

Book a free consultation to explore how BEUP can transform your workflow.

Book a Consultation
Response within 24 business hours

© 2025 - 2026 BEUP Learning Solutions · MST: 3301755602 · BEUP™ and product names are trademarks of BEUP Learning Solutions. Registration pending.

Select your currency
VND Vietnamese Dong