Excel for Data Analysis

    Yash Kabra3 min readUpdated

    Excel is the most accessible data analysis tool there is — no installation hurdles, no code, and it is already on most office computers. For a beginner it is the fastest way to start thinking with data. The four skills that matter most are formulas, pivot tables, lookup functions, and charts. Master those and you can answer real business questions in minutes.

    Why start with Excel?

    • It is everywhere. Most workplaces already use it.
    • Instant feedback. You see results as you type formulas.
    • It teaches data thinking — filtering, summarising, comparing — without code.
    • It scales into a stepping stone toward SQL and pandas, which use the same concepts.

    Essential formulas

    A handful of formulas cover most everyday analysis:

    • =SUM(B2:B100) — add up a range.
    • =AVERAGE(B2:B100) — the mean.
    • =COUNTIF(C2:C100, "Jalgaon") — count rows matching a condition.
    • =SUMIF(C2:C100, "Jalgaon", B2:B100) — sum values where a condition holds.
    • =IF(B2>70, "Pass", "Fail") — make a decision per row.

    SUMIFS and COUNTIFS extend these to multiple conditions, which is where Excel starts to feel powerful.

    Pivot tables — the analyst's superpower

    A pivot table summarises thousands of rows into a compact table in seconds, with no formulas at all. Drag a category (say, "Region") into rows and a number (say, "Sales") into values, and Excel instantly totals sales by region. Pivot tables answer "what is the total/average/count by category?" — the same question SQL's GROUP BY answers.

    Lookups: combining data

    When information lives in two tables, lookups bring it together. Modern Excel offers XLOOKUP, which is cleaner than the older VLOOKUP:

    • =XLOOKUP(A2, Products[ID], Products[Name]) finds the product name for an ID.

    This is Excel's version of a database JOIN.

    Want to learn this properly?

    Join the waitlist for our courses — beginner-friendly, project-first classes in Jalgaon.

    Browse courses

    Charts

    Excel's chart tools turn a selected range into a bar, line, or scatter chart with a couple of clicks. The same design rules from data visualisation basics apply: label everything, start bars at zero, and keep it clean.

    From Excel to code

    Everything you do in Excel has a direct counterpart in code. A pivot table is a groupby, a SUMIF is a filtered sum, an XLOOKUP is a merge. Learning Excel first makes Python for data science feel familiar rather than foreign.

    Common mistakes

    • Storing data and analysis in the same messy sheet. Keep raw data clean and on its own tab.
    • Hard-coding values inside formulas. Reference cells so your analysis updates automatically.
    • Merged cells in data ranges. They break pivot tables and sorting — avoid them in your data.
    • Trusting a chart without checking the axis. A truncated axis can exaggerate small differences.

    FAQ

    Is Excel enough to be a data analyst? It is a strong start and used daily in many roles, but most analysts also learn SQL and a BI tool to handle larger data.

    VLOOKUP or XLOOKUP? Prefer XLOOKUP where available — it is more flexible and less error-prone. VLOOKUP still appears in older files.

    When should I move beyond Excel? When datasets get large, repetitive, or need automation — that is when SQL and Python take over.

    Keep learning

    Excel is the friendliest first step into analytics. From here, level up with SQL for data analysis or browse the full Data Science & Analytics hub.

    Want a guided path from spreadsheets to real analytics? Join the waitlist for the Data Science & Analytics course at Infoplanet, Jalgaon.

    Want to learn this properly?

    Join the waitlist for our courses — beginner-friendly, project-first classes in Jalgaon.

    Browse courses
    Yash Kabra

    Founder, Atlee Technologies

    Yash Kabra is the founder of Atlee Technologies, a product studio that ships SaaS products end-to-end. He owns products from strategy through launch and growth — including Infoplanet, TrackRise and Perqee — and teaches AI, Machine Learning and Data Science at Infoplanet with a focus on how these tools are used to build real products.

    Related guides