Published on : Aug 18, 2026

Data Analyst Skills in 2026: The Technical + Business Checklist

What a Data Analyst Actually Does From raw data to better business decisions.

8 Minutes Read
Rutvik Acharya, Principal Data Scientist at Atlassian

Rutvik Acharya

Principal Data Scientist Atlassian

Data Analyst Skills in 2026: The Technical + Business Checklist thumbnail

Data Analyst Skills in 2026: The Technical + Business Checklist

What to learn first, what can wait, and what actually gets tested in the job

Most "data analyst skills" lists have the same problem. They hand you fourteen tools and zero sense of proportion. SQL sits next to Apache Spark. Excel sits next to machine learning. A beginner reads it, panics, and spends six months learning things that will never come up in an entry-level interview.

The reality is narrower than the lists suggest. Entry-level analyst work in 2026 is still mostly the same loop it was five years ago: pull the data, clean it, make sense of it, and explain it to someone who doesn't want to look at a spreadsheet. What has changed is that AI now handles a chunk of the mechanical work, which has quietly shifted where the value sits, away from typing syntax and toward knowing which question to ask in the first place.

This guide breaks down every skill that matters, technical and business, and for each one answers four things: what it is, why it matters, what level a fresher actually needs, and how it shows up in a real job. If you're earlier in the journey and want the wider career picture first, including timelines, salaries and portfolio advice, start with this step-by-step roadmap to becoming a data analyst in India and come back here for the skill-level detail.

The Skill Priority Matrix

Before the detail, here's the map. This is the honest weighting of data analyst skills for someone targeting their first role in 2026.

Skill

Tier

Interview Weight

Realistic Learning Time

SQL

Must Know

Very High

6–10 weeks

Excel / Google Sheets

Must Know

High

3–4 weeks

Data Cleaning

Must Know

High

Learned alongside SQL/Python

Data Visualization principles

Must Know

Medium

2–3 weeks

Communication & storytelling

Must Know

Very High

Ongoing

Business understanding

Must Know

High

Ongoing

Power BI or Tableau (pick one)

Good to Know

Medium–High

4–5 weeks

Python + Pandas

Good to Know

Medium

8–12 weeks

Statistics fundamentals

Good to Know

Medium

4–6 weeks

AI tools for analysts

Good to Know

Rising fast

1–2 weeks

Product analytics

Good to Know

Role-dependent

2–3 weeks

Stakeholder management

Good to Know

Tested indirectly

On the job

A/B testing & experimentation

Advanced

Low for freshers

Later

dbt / analytics engineering

Advanced

Low for freshers

Later

Machine learning

Advanced

Rarely for analysts

Later

Two things worth noticing. First, "Must Know" contains only six items, and two of them aren't technical. Second, machine learning is at the bottom. Freshers routinely invert this list, and it costs them months.


Technical Data Analyst Skills

SQL

What it is. The language used to retrieve and shape data stored in relational databases and cloud warehouses. Every filter, join, aggregation and ranking you'll do at scale runs through it.

Why it matters. SQL consistently ranks as one of the most requested technical skills in data analyst hiring, and it's the near-universal first technical filter in interviews. It's also one of the most widely used languages for working with data generally: 58.6% of developers reported using it in the past year, keeping it among the top handful of most-used languages alongside JavaScript, Python and HTML/CSS. Source: Stack Overflow Developer Survey 2025 Dashboards and BI tools are built on top of SQL queries, so even a "no-code" reporting job usually has SQL underneath it. It also survives the AI shift better than most skills: an AI assistant can draft a query in seconds, but someone still has to know whether the result is correct.

What level a fresher actually needs. Comfortable, not expert. You should be able to write a multi-table JOIN without hesitating, group and filter aggregates correctly, use CASE WHEN for business logic, handle NULLs deliberately, and write at least basic window functions like ROW_NUMBER() and RANK(). Query optimisation and indexing are good context, but nobody expects a fresher to tune a production warehouse.

How it's used in a real job. A growth manager asks why repeat purchases dropped in Tier-2 cities last month. You join orders to customers, segment by city tier and cohort, compare month-over-month, and find that a delivery partner change in three cities correlates with the drop. That's one query, maybe forty lines, and it's a Tuesday.

For the query-by-query breakdown, including joins, subqueries, window functions and the mistakes that quietly break dashboards, work through the guide to essential SQL skills for data analysts. When you're closer to interviews, drill against this set of 100 SQL interview questions for data analyst interviews.

It also helps to understand what sits underneath the query. Knowing how a DBMS actually stores and serves data is the difference between memorising syntax and understanding why a join behaves the way it does.


Excel and Google Sheets

What it is. The spreadsheet layer. Still one of the most widely used analysis tools in the world, and still where a surprising amount of business-critical reporting lives.

Why it matters. Freshers underrate Excel because it feels basic. Hiring managers don't. Excel is often where the ad-hoc request lands, where finance and ops teams live, and where you'll be asked to produce something in twenty minutes that would take an hour to model properly elsewhere. Many entry-level interviews include a live Excel round.

What level a fresher actually needs. Solid working fluency: VLOOKUP/XLOOKUP, INDEX-MATCH, SUMIFS and COUNTIFS, pivot tables, conditional formatting, text and date functions, and basic charting. Power Query for repeatable cleaning is a strong differentiator. VBA macros are not required in 2026 and rarely worth the time.

How it's used in a real job. A regional sales head sends a messy export with merged cells, inconsistent date formats and three different spellings of the same city. You clean it with Power Query, pivot it by region and month, and return a one-tab summary with a chart. Microsoft's own Excel functions reference is a genuinely useful bookmark here.


Data Cleaning

What it is. Turning raw, unreliable data into something you can trust enough to draw conclusions from. Deduplication, handling missing values, standardising formats, fixing type mismatches, catching outliers.

Why it matters. This is where analysts spend the largest share of their time, and it's the single biggest source of wrong answers. A dashboard built on uncleaned data doesn't fail loudly. It just quietly reports the wrong number for six months until someone notices.

What level a fresher actually needs. You need a process, not just functions. Before analysing anything: check row counts against the source, check for duplicates on the key, check what percentage of each important column is null, check date ranges for impossible values, and check categorical columns for inconsistent spellings. Knowing COALESCE in SQL and .fillna() in Pandas is easy. Knowing to look is the actual skill.

How it's used in a real job. You're handed a customer table where 12% of phone numbers are blank, some are stored as text and some as numbers, and a few rows are duplicated because a form submitted twice. Deciding whether to drop, impute or flag each issue, and documenting that decision, is the job.

Common mistake: silently dropping nulls. If 30% of a column is missing, dropping those rows can change your answer entirely, and you'll never know because the query still runs.


Python and Pandas

What it is. A general-purpose programming language and its dominant data manipulation library. Pandas gives you dataframes, essentially spreadsheets you control with code.

Why it matters. Python takes over exactly where SQL and Excel run out: repeated cleaning workflows, joining data from multiple systems and file formats, API pulls, statistical work, and any analysis you want to run again next month without redoing it by hand. At product companies and startups it's increasingly expected even at entry level.

What level a fresher actually needs. Genuinely less than people think. You need Pandas for loading, filtering, groupby, merge, reshaping with pivot and melt, handling missing data, and date handling. Add basic Matplotlib or Seaborn for quick charts. You do not need object-oriented design, decorators, or algorithm-heavy programming to be an effective analyst. If you're starting from zero on the language itself, get grounded in what Python is and where it's actually used before diving into libraries.

How it's used in a real job. Marketing wants a weekly report combining ad spend from three platforms, none of which share a schema. You write a script that pulls each export, standardises the columns, merges on campaign ID and date, calculates blended CAC, and writes a clean file. It takes a day to build and thirty seconds a week thereafter.

For the specific functions and patterns worth prioritising, see the Python skills every data analyst needs to know, and check the official pandas documentation when you need the authoritative behaviour of a method rather than a blog's paraphrase.


Data Visualization

What it is. Choosing and building the visual form that makes a finding obvious. Note that this is a skill about charts, separate from the tool you build them in.

Why it matters. A correct analysis presented badly gets ignored. A chart with a truncated y-axis or twelve colours actively misleads. Chart choice is a reasoning skill: it forces you to decide what the single most important comparison in your data actually is.

What level a fresher actually needs. Know when to use each basic form and, more importantly, when not to. Bar for comparison across categories. Line for change over time. Scatter for relationship between two variables. Stacked bar sparingly. Pie charts almost never, and never with more than three slices. Beyond chart type: label axes, start bars at zero, sort categories meaningfully rather than alphabetically, and limit yourself to one message per chart.

How it's used in a real job. You've found that churn is concentrated in users who never completed onboarding step three. The temptation is a dashboard with nine charts. The right answer is one line chart of retention split by onboarding completion, with a single annotation. That chart gets acted on. The nine-chart version gets bookmarked and forgotten.


Power BI and Tableau

What it is. The two dominant business intelligence platforms. Both connect to data sources, model relationships, and publish interactive dashboards that stakeholders can filter themselves.

Why it matters. Dashboards are how analysis scales. Without one, every recurring question comes back to you as a manual request. With one, the business self-serves and you spend your time on new questions.

What level a fresher actually needs. Pick one and go reasonably deep rather than learning both shallowly. Power BI has been named a Leader in Gartner's Magic Quadrant for Analytics and Business Intelligence Platforms for eighteen consecutive years, reflecting its dominant position in enterprise BI, particularly in organisations already running on Microsoft. Source: Microsoft Power BI Blog Tableau remains common in product companies and agencies. Either way you need: connecting to a data source, basic data modelling and relationships, calculated fields (DAX in Power BI, calculated fields and LOD expressions in Tableau), filters and parameters, and publishing.

The tool is genuinely the easier half. The hard half is deciding what belongs on the dashboard.

How it's used in a real job. Ops asks for "a dashboard for daily performance." What they actually need is four KPIs above the fold, a trend line, and one drill-down by branch. Your job is to have that conversation before you build, not after. Both Microsoft's Power BI learning path and Tableau's official training are solid, free-to-browse starting points.


Statistics

What it is. The mathematical foundation for saying something is true, and for knowing how confident you're entitled to be.

Why it matters. Statistics is what separates "revenue went up 4%" from "revenue went up 4%, which is within normal weekly variation, so nothing actually happened." Analysts who skip statistics produce confident, wrong conclusions.

What level a fresher actually needs. Applied understanding, not proofs. Specifically: mean vs median and when the mean lies, standard deviation and variance, distributions and skew, correlation and why it isn't causation, sampling and sample size intuition, basic hypothesis testing and what a p-value does and doesn't mean, and confidence intervals. Regression is useful context. Bayesian inference and advanced modelling are not entry-level requirements.

How it's used in a real job. A product manager runs a landing-page test for four days, sees a 6% lift, and wants to ship. You point out the sample size gives that result a wide confidence interval and the test spanned a weekend, which skews traffic mix. That single intervention is worth more than most dashboards you'll build.

Common mistake: reporting averages on skewed data. Average order value in an e-commerce dataset with a handful of bulk buyers is close to meaningless. Median plus distribution tells the real story.


Data Analysis (The Skill Itself)

What it is. The reasoning layer. Framing a question, choosing an approach, segmenting sensibly, checking whether the pattern holds, and knowing when you've found something real versus noise.

Why it matters. This is the skill nobody puts on a job description because it's hard to name, and the one that determines whether you get promoted. Tools are learnable in weeks. Analytical judgment takes projects.

What level a fresher actually needs. Enough structure to not flail. A workable default: start with the aggregate number, then segment it (by time, geography, user type, channel, cohort), find where the movement is concentrated, form a hypothesis about why, then test that hypothesis against a different cut of the data. Always ask what would have to be true for your conclusion to be wrong.

How it's used in a real job. "Signups dropped 15%." A weak analyst reports the 15%. A strong analyst segments it, finds 90% of the drop is in one acquisition channel on Android, checks whether a release shipped that week, and hands over a probable cause with evidence.


Product Analytics

What it is. Analysing user behaviour inside a digital product: funnels, retention, cohorts, activation, feature adoption, event tracking. Common tools include Mixpanel, Amplitude, GA4 and PostHog.

Why it matters. A large share of analyst hiring is now at product companies, and product analytics has its own vocabulary. If you can talk fluently about D7 retention, funnel drop-off and activation events, you separate yourself immediately from candidates who only know generic reporting.

What level a fresher actually needs. Concepts over tool proficiency. Understand funnel analysis, cohort retention curves, DAU/WAU/MAU and their ratios, activation and the "aha moment" idea, and basic event taxonomy (what an event, property and user trait are). You can demonstrate all of this with SQL on a public dataset; you don't need paid tool access.

How it's used in a real job. A team ships a new onboarding flow. You build a cohort retention comparison between users who saw the old flow and the new one, and find that the new flow improves day-1 activation but worsens day-30 retention, because it front-loads a step users aren't ready for. That's a finding that changes the roadmap.


AI Tools for Data Analysts

What it is. Using LLMs and AI features embedded in analytics tools to draft SQL, explain unfamiliar code, generate cleaning scripts, summarise findings, build first-pass dashboards, and speed up documentation.

Why it matters. This is the biggest change to the analyst role since cloud warehouses. AI reliably compresses the mechanical parts of the job, which raises the value of everything it can't do: knowing what to ask, whether the output is right, and what the business should do about it. AI and big data skills are projected to grow faster than almost any other skill category through 2030, with the large majority of employers expecting demand to increase. Source: World Economic Forum — Future of Jobs Report 2025 In 2026, "can use AI tools well" is becoming an expected baseline rather than a differentiator, and mentioning it naturally in an interview signals you're current.

What level a fresher actually needs. Practical, sceptical usage. Be able to prompt with schema context so generated SQL actually runs, use AI to explain and debug code you inherited, generate boilerplate cleaning steps, and draft stakeholder summaries. Critically: always verify. AI-generated SQL frequently produces syntactically valid queries that answer a subtly different question than the one you asked, and joins are where it goes wrong most often.

How it's used in a real job. You're handed a 200-line legacy query nobody understands. You paste it into an AI assistant, get a plain-English breakdown of what each CTE does, verify the logic against the source tables yourself, then rewrite the two sections that were actually broken. Two hours instead of two days.

The honest picture of where AI helps and where it doesn't is covered in this breakdown of AI and GenAI tools changing analytics workflows.


Business Skills for Data Analysts

Here's the pattern that shows up again and again in hiring: two candidates both clear the SQL round, and the offer goes to the one who explained their answer better. Technical skills get you into the interview. Business skills get you the job, and later, the promotion.

Business Understanding

What it is. Knowing how the company actually makes money, what each team is measured on, and which numbers move the business.

Why it matters. Without it, you produce technically correct analysis that answers nothing anyone cares about. An analyst who understands that the company's real constraint is retention, not acquisition, will spend their time on the right questions without being told.

What a fresher needs. For the company you're interviewing at: know the revenue model, the main customer segments, the two or three metrics leadership watches, and the biggest competitive pressure. This is thirty minutes of research and almost nobody does it.

In a real job. You're asked for a report on discount usage. Knowing that margin, not volume, is the pressure this quarter changes what you build entirely, from a discount-usage count into a margin-impact analysis.


Problem Solving and Critical Thinking

What it is. Breaking a vague request into an answerable question, and interrogating your own conclusions before someone else does.

Why it matters. Requests almost never arrive well-formed. "Can you look into user engagement?" is not a question, it's a starting point. The analyst who can turn that into "which segments show declining weekly active usage, and does it correlate with the December release?" is already more valuable than one who builds an engagement dashboard nobody asked for.

What a fresher needs. A habit of decomposition and a habit of doubt. Before presenting: what else could explain this? Is my sample representative? Does this hold if I cut the data a different way? Am I seeing a real change or normal variance?

In a real job. Conversion rate jumps 20% overnight. The critical-thinking move is to check whether tracking changed before celebrating. It usually did.


Communication

What it is. Conveying findings clearly to people who don't share your context, in writing, in slides and out loud.

Why it matters. Analysis that isn't understood has zero impact, and impact is what you're evaluated on. Industry surveys of data teams consistently flag communication and problem-solving as the most common gaps in newly hired analytics talent, ahead of most technical shortfalls. Source: Codio — 2025 Data Skills Gap Survey It's also one of the easiest gaps to close deliberately.

What a fresher needs. Lead with the answer, not the method. Drop jargon: say "customers who bought twice or more," not "users with order_count >= 2." Quantify in business terms, so "roughly ₹8 lakh a month in lost revenue," not "a 3.2% delta." Be explicit about confidence, and say when you're not sure.

In a real job. Your Slack message to leadership should work as three lines: what happened, why, what you recommend. The detailed analysis goes in an attached doc for whoever wants it. If a stakeholder has to open the appendix to understand your point, the message failed.


Data Storytelling

What it is. Structuring findings as a narrative with a beginning, a tension and a resolution, rather than a pile of charts.

Why it matters. Storytelling is what makes a finding memorable enough to act on. It's also the clearest signal of seniority in an interview presentation round.

What a fresher needs. A reusable structure: Context (what we expected) → Conflict (what actually happened) → Insight (why) → Recommendation (what to do) → Impact (what it's worth). Practise it on your portfolio projects. Every project write-up should follow this shape.

In a real job. "Here's a churn dashboard" gets a nod. "We assumed churn was a pricing problem. It isn't. 60% of churned users never completed setup, and they churn within eleven days. Fixing step three of onboarding is worth an estimated ₹40 lakh annually" gets a project funded.


Stakeholder Management

What it is. Managing the humans around the analysis: clarifying requests, negotiating scope and timelines, handling competing priorities, and pushing back when needed.

Why it matters. Analysts get requests from every direction, and most are underspecified and marked urgent. Without stakeholder skills you become a query-writing service, permanently reactive.

What a fresher needs. Three habits. Confirm the request in your own words before starting ("So you want weekly signups by channel for Q2, to decide next quarter's budget split, correct?"). Ask what decision the analysis will inform, which often collapses a two-day request into a two-hour one. Give a timeline and update it before it slips, not after.

In a real job. Someone asks for a full customer segmentation model by Friday. Asking why reveals they need to pick a target group for one campaign. That's a two-hour query, not a two-week project.


Asking the Right Questions

What it is. The skill of interrogating the request itself, upstream of any analysis.

Why it matters. In an AI-assisted world this is arguably the highest-leverage skill on this entire list. Generating the query is increasingly cheap. Knowing which query is worth generating is not.

What a fresher needs. A default set of clarifiers: What decision depends on this? What's the time period? Which users or customers count, and which are excluded? What would surprise you? What does "good" look like? And the most useful of all: what will you do if the answer is the opposite of what you expect?

In a real job. Asked to find "our best customers," the whole analysis hinges on a definition nobody has stated. Highest lifetime value? Most frequent? Highest margin? Most likely to refer? Getting that definition agreed in advance is the difference between a useful analysis and a rewrite.


Translating Data into Business Decisions

What it is. Closing the loop from finding to recommendation to measurable outcome.

Why it matters. This is the actual output of the role. Analysts who stop at "here's what the data says" get treated as a reporting function. Analysts who say "here's what I'd do about it, and here's what I expect it to be worth" get treated as partners.

What a fresher needs. Always end with a recommendation, even a tentative one, and always attach a rough number to it. Being approximately right with a clear "here's my assumption" beats being silent.

In a real job. Finding: refund rate is 3x higher for one product category. Recommendation: pause paid spend on that category for two weeks while ops investigates sizing, at an estimated cost of ₹2 lakh in deferred revenue against ₹6 lakh in avoided refunds. That's a decision someone can approve.


Technical vs Business Skills: How They Actually Compare

Dimension

Technical Skills

Business Skills

How you learn them

Courses, docs, deliberate practice

Projects, feedback, exposure to real stakeholders

Time to competence

Weeks to months

Months to years, compounding

How they're tested

SQL rounds, take-home tasks, tool questions

Case rounds, presentation rounds, behavioural questions

What they get you

Into the interview, past the first filter

The offer, and later the promotion

Effect of AI

Partly automated, value shifting to verification

Value increasing

Easy to fake?

No, tested directly

Somewhat, until you present live

Where freshers over-invest

Here, heavily

Rarely

The takeaway isn't that business skills matter more. It's that technical skills have a ceiling on how much they differentiate you, and business skills don't.


The Must Know / Good to Know / Advanced Framework

Must Know — you will be tested on these for almost any entry-level role SQL (joins, aggregations, CASE WHEN, NULL handling, basic window functions) · Excel (lookups, pivots, SUMIFS, basic Power Query) · Data cleaning process · Chart selection fundamentals · Clear communication · Basic business context for the company you're applying to

Good to Know — these separate you from other candidates Python and Pandas · One BI tool, deeply · Applied statistics · AI-assisted workflows with verification · Product analytics concepts · Data storytelling structure · Version control basics with Git

Advanced — deliberately defer these until you're employed A/B testing design and analysis · dbt and analytics engineering · Cloud warehouse cost optimisation · Machine learning · Spark and big-data tooling · Custom event tracking implementation

The most common fresher mistake in 2026 is skipping ahead to the third column because it sounds more impressive. An interviewer will always trade a candidate who mentions ML for one who can write a clean, correct query and explain the result in plain English.


Recommended Learning Order

This sequence is built so that each stage produces something usable rather than leaving you with disconnected knowledge.

Phase

Weeks

Focus

What You Should Be Able to Do

1

1–4

Excel + data cleaning habits

Clean a messy export and produce a pivot summary independently

2

4–12

SQL, from basics to window functions

Answer a multi-part business question in one query

3

10–14

One BI tool + visualization principles

Build a dashboard that answers a defined question, not just displays data

4

12–18

Python and Pandas

Automate a repeated cleaning and merging workflow

5

14–20

Applied statistics

Say whether a change is meaningful, with reasoning

6

16–22

3–4 portfolio projects, each with a written narrative

Present a finding and a recommendation in five minutes

7

20+

Interview practice, product analytics, AI workflows

Handle a live SQL round and a case discussion

Roughly five months from scratch at a consistent pace. Faster if you're coming from a quantitative or finance background. Notice that AI tooling appears last, not because it's unimportant, but because using AI to skip the fundamentals leaves you unable to tell when it's wrong, which is precisely when it's most dangerous.

Working alongside others makes this considerably easier to sustain. Gradient's free live analytics sessions run through these exact topics with practitioners from product companies, and the free data analytics resource library covers interview prep across SQL, Python and BI.


Common Mistakes That Cost Freshers Interviews

  • Learning tools in parallel instead of in sequence. Half-knowledge of five tools loses to fluency in two.

  • Treating Excel as beneath you. It's often the first live round, and it's where most business users actually work.

  • Building dashboards nobody asked for. A dashboard without a defined question is decoration.

  • Copying tutorial projects unchanged. Interviewers recognise the same three Kaggle datasets instantly. Change the question, add messy data, write your own narrative.

  • Trusting AI-generated SQL without checking. Valid syntax that answers the wrong question is the most expensive failure mode in modern analytics.

  • Reporting numbers without recommendations. "Churn is 8%" is not an insight.

  • Skipping statistics entirely. You'll eventually declare a random fluctuation to be a trend, in front of leadership.

  • Ignoring the presentation round. Many candidates prepare for SQL and improvise the explanation. It shows.

  • Waiting to feel ready. The gap between "I've learned SQL" and "I'm ready" never closes on its own. Apply while you're still learning.


You can browse current data analyst openings to calibrate what employers are actually asking for, and the Python interview questions and answers set is a fast way to pressure-test the coding side before a screen.


Quiz

TEST WHAT YOU LEARNED

Question 1 of 15

Q1: According to the skill priority matrix, how many skills fall into the "Must Know" tier?

FAQ

FREQUENTLY ASKED QUESTIONS

The non-negotiables are SQL, Excel, a working data-cleaning process, basic visualization judgment, and the ability to explain findings clearly. Python, one BI tool, applied statistics, and AI-assisted workflows can put you ahead of other applicants. Machine learning is not required for entry-level analyst roles.
Start with Excel briefly, then move to SQL. Excel gives you an immediate feel for data structure and gets you productive quickly. SQL is heavily tested in interviews and widely used on the job, so it deserves the largest block of your learning time.
Yes, particularly in BFSI, consulting, and service companies where SQL, Excel, and Power BI are common requirements. However, Python considerably widens your options, especially at product companies and startups.
You should be comfortable with multi-table joins, aggregations using GROUP BY and HAVING, subqueries and CTEs, CASE WHEN, deliberate NULL handling, and basic window functions such as ROW_NUMBER() and RANK(). Query tuning and indexing are useful to understand but are rarely tested at entry level.
Yes. Excel remains widely used by business teams, handles many ad-hoc requests, and frequently appears in data analyst interview rounds. Strong Excel skills remain valuable for freshers.
Focus on applied understanding rather than advanced theory. You should know descriptive statistics, distributions and skew, correlation versus causation, sampling intuition, basic hypothesis testing, and confidence intervals well enough to distinguish meaningful changes from noise.
Choose based on your target market. Power BI is particularly common in Indian enterprises, BFSI, and Microsoft-heavy organisations, while Tableau is more common in some product companies and agencies. Learn one properly first; the underlying concepts transfer to the other.
AI is replacing parts of the work, mainly query drafting, boilerplate cleaning, and first-pass summarisation. However, analysts still need to decide which questions matter, verify whether answers are correct, and take responsibility for recommendations. The role is shifting toward judgment rather than disappearing.
Yes, but be specific. Instead of simply saying you use AI, explain how you used it for tasks such as decoding a legacy query and then verified the output against source tables. This demonstrates the verification and judgment skills interviewers value.
Around four to six months of consistent effort is a realistic target when following a sequenced learning order. It may be faster with a quantitative, engineering, or finance background and slower when learning passively instead of building projects.
No. Commerce, economics, engineering, and non-technical backgrounds can all lead to data analyst roles. Demonstrated skills and a portfolio of real projects can matter more than the subject listed on your degree certificate.
A strong project uses messy real-world data, answers a clear business question, shows cleaning and transformation decisions, and ends with a recommendation supported by a meaningful number. Three or four strong projects are more valuable than many tutorial reproductions.
Aim for three to four strong projects. Each should have a written README explaining the question, approach, and answer. At least one should include a dashboard and at least one should end with a written business recommendation.
Communication, asking clarifying questions, business understanding, and data storytelling are among the most important soft skills. They determine whether your analysis can actually influence decisions and are often assessed in presentation and case rounds.
Use structure rather than relying on charisma. Lead with the answer, remove unnecessary jargon, quantify findings in business terms, and rehearse a five-minute explanation of each portfolio project until you can deliver it without notes.
Data storytelling means framing findings as a narrative rather than presenting a collection of charts. It explains what was expected, what happened, why it happened, what should be done, and what the impact could be. This helps stakeholders understand findings and act on them.
Data analysts work closer to the data itself, using SQL, dashboards, and statistical reasoning. Business analysts focus more on processes, requirements, and stakeholder workflows, typically with less technical depth. The exact boundary varies by company.
You will typically encounter a SQL round, either live or take-home, along with a case or business-scenario discussion. Some companies also include an Excel or dashboard exercise and a presentation of one of your projects. Behavioural questions about stakeholder management are common in final rounds.
One or two relevant certifications can help demonstrate a specific tool skill, particularly for BI platforms, but they do not substitute for practical projects. If choosing between another certificate and another strong portfolio project, the project is generally more valuable.
You can learn A/B testing design, dbt and analytics engineering, cloud warehouse optimisation, Spark and big-data tooling, and machine learning later. These are valuable skills but are rarely the deciding factor for a fresher getting an offer, and they are easier to learn with real data and workplace context.
What a Data Analyst Actually Does in 2026