Before Python, before SQL, before Power BI there is Excel. It is the most widely installed data analytic software on earth, available on every corporate laptop in Kathmandu's banking, telecom, and IT sectors, and still the number one tool that hiring managers expect entry-level data analyst in nepal candidates to know cold. This guide covers excel for data analysis from absolute zero from enabling the right tools to building a working data analytics dashboard and explains exactly where Excel fits in the full data analytics roadmap alongside SQL, Python, and Power BI.
Before going deeper into Excel specifically, if you want the broader picture of what is data analytics as a career and discipline, or how data analytics vs data science differ as paths, those guides in our series cover both in full.
Data analytics meaning in simple terms: the process of collecting, cleaning, examining, and communicating patterns in data to support business decisions. A data analytics description that captures both the technical and human side: it's the discipline of turning raw numbers into clear answers that help organizations act more intelligently.
Data analytics excel is the entry point to this discipline for most people. Excel makes the core data analytics process import, clean, analyze, visualize, present accessible without any coding knowledge. That's not a compromise. It's a deliberate, practical starting point that transfers directly into every other data analytics tools and platform you'll use afterward.
Before comparing Excel to other data analytic software, it's worth being clear about why it still matters in 2026, even with more powerful tools available:
The Data Analysis ToolPak is Excel's built-in statistical analysis add-in it adds regression, ANOVA, descriptive statistics, histogram, t-tests, and more. It's installed in Excel but not activated by default, which is why many beginners search "excel data analysis not showing." Here's how to fix it:
Still not showing? If you've enabled the ToolPak but excel data analysis not showing in the ribbon, the most common causes are: using Excel Online (the ToolPak is desktop-only), running an older version of Excel that needs updating, or the add-in was disabled by an IT policy on a work machine. In those cases, use Power Query for data cleaning tasks and the built-in statistical functions (AVERAGE, STDEV, CORREL) directly in the worksheet.

The most underrated skill in excel for data analysis is cleaning. Analysts spend 60–80% of their time preparing data before any real analysis begins. Here are the essential techniques:
Go to Data → Remove Duplicates. Select which columns to check for duplicate values. Excel removes the duplicate rows and tells you how many were deleted. Always work on a copy of your data removing duplicates is irreversible without Undo.
Data imported from external systems (ERP, accounting software, web scrapes) often arrives with invisible characters and extra spaces:
=TRIM(A2) → removes all extra spaces, keeps single spaces between words
=CLEAN(A2) → removes non-printable characters (line breaks, special chars)
=TRIM(CLEAN(A2)) → combines both use this as your default cleaning formula
When a column has combined data (e.g., "Kathmandu, Nepal" in a single cell), go to Data → Text to Columns to split it into separate columns using a delimiter (comma, space, tab) or fixed width.
Type the pattern you want in the column next to your data, press Ctrl + E, and Excel completes the rest automatically. Flash Fill recognizes patterns from examples extract first names, reformat phone numbers, combine fields with no formula required.
Use Go To Special → Blanks (Ctrl + G → Special → Blanks) to select all empty cells at once. You can then fill them with a value, flag them with a formula, or delete rows with critical missing data. For conditional filling:
=IF(A2="", "Unknown", A2)
These are the data analytics excel functions that appear in real analytical workflows, not just textbook exercises.
The most used functions in business data analytics excel work:
=SUMIF(region_range, "Kathmandu", sales_range)
→ Total sales only for the Kathmandu region
=COUNTIF(status_range, "Pending")
→ Count of pending orders
=AVERAGEIF(department_range, "IT", salary_range)
→ Average salary only for the IT department
The SUMIFS, COUNTIFS, and AVERAGEIFS variants accept multiple criteria essential when your analysis involves more than one filter condition simultaneously.
VLOOKUP has well-known limitations: it only searches left-to-right, it breaks when you insert columns, and it returns the first match only. XLOOKUP, available in Excel 2021 and Microsoft 365, fixes all of these:
=XLOOKUP(lookup_value, lookup_array, return_array, [if_not_found])
=XLOOKUP(E2, employee_id_col, salary_col, "Not Found")
→ Finds the salary for any employee ID, works in any direction,
returns "Not Found" instead of the ugly #N/A error
If you're still learning VLOOKUP for a current role, continue it's worth knowing for older files. But invest in XLOOKUP as your primary lookup skill going forward.
When you need full flexibility (two-way lookups, dynamic column references, or working with very large datasets where XLOOKUP performance matters), INDEX-MATCH is the professional standard:
=INDEX(return_range, MATCH(lookup_value, lookup_range, 0))
=INDEX(C2:C100, MATCH("Ramesh Sharma", A2:A100, 0))
→ Finds Ramesh Sharma's value from column C regardless of column order
Categorizing records into segments is a core data analytics process task:
=IFS(
score >= 90, "Excellent",
score >= 75, "Good",
score >= 60, "Average",
TRUE, "Below Average"
)
The IFS function (Excel 2019+) is cleaner than nested IF statements and easier to debug. Use it for customer segmentation, employee performance tiers, and risk classification.
Excel's modern dynamic array functions (available in Excel 365 and Excel 2021) behave more like database queries:
=UNIQUE(A2:A100)
→ Returns a list of unique values from the column no manual removal needed
=FILTER(data_range, (region_col="Pokhara")*(status_col="Active"))
→ Returns all rows matching both conditions simultaneously
=SORT(UNIQUE(product_col))
→ Returns sorted unique product names in one formula
These three functions together replace a significant amount of manual pivot table and COUNTIF work for quick data exploration.
For basic exploratory data analytics:
=CORREL(sales_range, marketing_spend_range)
→ Measures the linear relationship between two variables (-1 to 1)
=STDEV(values_range)
→ Measures how spread out the data is around the average
=PERCENTILE(values_range, 0.9)
→ The value at the 90th percentile useful for outlier analysis
If there's one skill that distinguishes a beginner Excel user from an analyst, it's PivotTables. A PivotTable lets you summarize, group, filter, and rearrange thousands of rows of data in seconds and update the entire analysis instantly when you add new data.
Right-click the PivotTable → PivotTable Analyze → Fields, Items & Sets → Calculated Field. This lets you add metrics that don't exist in your raw data:
= Revenue / Units_Sold → Average Selling Price
= (Revenue - Cost) / Revenue → Gross Margin %
Add slicers (Insert → Slicer) to give your PivotTable clickable filter buttons. Add Timelines for date-based filtering by day, month, quarter, or year. These two features are what make a PivotTable report feel like a live, interactive data analytics dashboard rather than a static report.
When your data updates, right-click the PivotTable and select Refresh. To make this automatic, convert your source data to an Excel Table first (Ctrl + T) Excel Tables expand automatically as you add rows, so your PivotTable always captures new data.
Power Query is the most underutilized tool in Excel for serious excel for data analysis work. It automates the data import, cleaning, and transformation process that analysts would otherwise do manually every time new data arrives.
Go to Data → Get Data → Launch Power Query Editor. Or use Data → Get Data to connect to a specific source and it will open automatically.
Say you receive monthly sales CSV files from five branches and need to combine them into one report:
Next month, drop the new CSV into the same folder, click Refresh, and Power Query does everything again automatically. This is the difference between a five-minute refresh and a two-hour manual process.
A data analytics dashboard in Excel is a single, dynamic view that combines PivotTables, charts, slicers, and KPI cards into one screen that any stakeholder can use to monitor the business. Here's the structure:

A Kathmandu-based microfinance institution tracks:
All of this updates in one click when monthly data arrives. This is the kind of data analytics project that demonstrates real-world Excel skills in a data analyst job in nepal interview.
Many beginners wonder where python for data analytic work replaces Excel, and where Excel remains the right tool. Here's a clear, honest comparison:
| Factor | Excel for Data Analysis | Python for Data Analytics |
|---|---|---|
| Learning curve | Gentle mouse-driven, visual feedback | Steeper code-based, debugging required |
| Data size limit | ~1 million rows per sheet | No practical limit |
| Automation | Power Query automates refresh; manual steps still needed | Full automation possible with scripts |
| Visualization | Good for standard charts and dashboards | Superior for statistical and custom visualizations |
| Statistical analysis | ToolPak covers basics | Full statistical library (scipy, statsmodels) |
| Sharing output | Excel files, PDF exports | Scripts, notebooks, web apps |
| Job market demand in Nepal | Very high (required for most entry-level roles) | High (required for mid-to-senior roles) |
| Best for | Data cleaning, dashboards, reporting, business analysis | Automation, large datasets, predictive modeling, ML |
The answer for a beginner: Excel first, Python second. Excel teaches you the logic of data manipulation (which maps directly to Python's pandas library), gives you immediate job-relevant skills, and remains the primary tool in most Nepali analytical workflows. Python for data analytic work extends what you can do with Excel, it doesn't replace it. Our dedicated python for data analytics guide covers when and how to make that transition.
AI in data analytics is not a future capability it's already built into Excel for Microsoft 365 users, and it's changing how analysts work with the tool.
Microsoft Copilot for Excel (available in Microsoft 365 Business and Enterprise plans) lets you type natural language requests into the sidebar and have AI perform the analysis:
Copilot generates formulas, builds PivotTables, adds conditional formatting, and writes Power Query steps all from plain English instructions. This doesn't replace knowing Excel; it makes knowing Excel more powerful, because you still need to understand what Copilot produces to verify it's correct.
For users without Copilot, Excel's built-in Analyze Data button (Home tab → Analyze Data) uses AI to automatically suggest PivotTables, charts, and patterns in your selected data. It's a good starting point for exploratory analysis when you're not sure what questions to ask.
AI ML in data analytics workflows that go beyond summary statistics and dashboards predictive models, classification, clustering, anomaly detection require Python and its machine learning libraries (scikit-learn, TensorFlow, PyTorch). Excel's ToolPak and Copilot cover descriptive and some inferential analytics well, but ai data science machine learning applications that run on large datasets and require model training live in Python.
This is why the progression in our Business Data Analytics with AI course goes: Excel → SQL → Power BI → Python → AI-powered analytics tools. Each layer builds on the one before it.
Understanding AI in data analytics as a broader trend how AI is changing analyst roles, what ai data science subjects are becoming table stakes, and how to position yourself for AI-augmented analytics roles is covered in full in our dedicated AI in data analytics guide.
When employers list data analytics required skills in job postings in Nepal, they typically expect:
| Skill Category | Tools | Excel Connection |
|---|---|---|
| Data manipulation | Excel, SQL, Python (pandas) | Excel teaches the logic; SQL and pandas extend the scale |
| Visualization | Excel, Power BI, Tableau | Excel dashboards are the entry point; Power BI scales them |
| Statistical analysis | Excel ToolPak, Python (scipy), R | Excel ToolPak covers descriptive stats and basic inference |
| Data cleaning | Excel (Power Query), Python | Power Query is directly transferable to Power BI's data layer |
| Business communication | Excel (dashboards, reports) | Excel output is what most stakeholders consume |
| AI tools | Copilot, Python, AI platforms | Copilot in Excel introduces AI-assisted analysis at the tool level |
Excel is not one skill among many in this list it's the foundation that makes every other skill on it more accessible.
The complete data analyst roadmap for a Nepal-based beginner, with Excel's stage clearly marked:
Salary ranges verified against Kumarijob, NecoJobs, Paylab, and live job postings (mid-2026):
| Role | Experience | Monthly Salary (NPR) | Primary Excel Skills Required |
|---|---|---|---|
| Data Analytics Intern | 0 years | 10,000–25,000 | Basic formulas, sorting, filtering, basic charts |
| Entry-level Data Analyst | 0–1 years | 30,000–60,000 | PivotTables, VLOOKUP/XLOOKUP, dashboard basics |
| Mid-level Data Analyst | 1–3 years | 60,000–100,000 | Power Query, complex formulas, dynamic dashboards |
| Senior Data Analyst | 3–5 years | 100,000–150,000+ | Full Excel + SQL + Power BI stack |
| AI Data Analyst Salary (AI-specialized roles) | 3+ years | 120,000–200,000+ | Excel + Python + AI tools integration |
The ai data analyst salary premium in Nepal is real and growing: roles that explicitly require AI-integrated analytics (Copilot proficiency, Python + ML for data analysis, AI-assisted reporting) consistently command 30–50% more than equivalent traditional analyst roles. This gap is expected to widen through 2027 as AI tools become standard in enterprise analytics workflows.
For remote roles: Nepali analysts with strong Excel, SQL, and Power BI portfolios applying for international data analytics remote jobs can target USD 500–1,500/month, while those with Python and AI tools integration can target USD 1,500–3,000/month in fully remote analytical roles.
The gap between knowing Excel and being hireable is a portfolio. Here are data analytics project ideas that demonstrate real skills in an interview:
These are the kinds of projects that turn an excel course for data analysis into a credential an employer can verify not just a certificate, but evidence of capability.
Whether you're looking for an excel for data analysis full course, exploring data analytics free courses, or ready for structured data analytics training, here's how to evaluate your options:
Where data analytics best courses and structured training add value beyond free resources:
If you're searching for a data analytics full course that starts with Excel and builds through SQL, Power BI, Python, and AI tools rather than treating Excel in isolation Skill Shikshya's Business Data Analytics with AI course in Nepal is built around exactly that progression. It's designed for both students with no prior background and working professionals upgrading their analytics toolkit, with a data analytics course in nepal curriculum that matches what Kathmandu's IT, banking, and NGO sectors actually require.
For the broader landscape of business analytics in nepal how different data analytics courses online compare, what data analytics institute options exist, and what certifications hold value with Nepali employers our career guide to becoming a data analyst covers all of it as part of the full roadmap.

Mr. Saurav Raj Joshi is a skilled Data and BI Engineer at Fusemachines, specializing in SQL and the Azure ecosystem, including Fabric, Azure Data Factory, and Synapse Analytics. He focuses on building efficient ETL pipelines, upgrading legacy systems, and ensuring data integrity to support informed business decisions.
Mr. Joshi is also adept at translating complex technical concepts into clear insights and creating effective data visualizations that drive operational efficiency and business growth.