Understand what data analysis is
Learn what analysts do and how data helps people make decisions.
Start here
Learn Data with Debby
This space helps beginners understand data analysis in a simple, practical, and structured way through guides, tutorials, and datasets.
Beginner roadmap
These lessons teach the basic skills you need before moving into full tutorials and dashboard projects.
Learn what analysts do and how data helps people make decisions.
Clean, organize, calculate, summarize, and visualize data.
Query data, create visuals, and build reports that communicate clearly.
Build confidence by applying what you learn independently.
Guided tutorials
Start with the basic Excel skills every beginner analyst needs.
Read lessonUse a sales dataset to practice cleaning, analysis, and insight generation.
Read tutorialLearn how to turn spreadsheet analysis into a clear dashboard.
Read tutorialUnderstand visuals, reports, and the basics of dashboard building.
Read tutorialBuild a practical dashboard and learn how to present insights.
Read tutorialLearn how to query databases and answer business questions with SQL.
Read tutorialExcel basics
This section is designed for complete beginners who have never used Excel before. Before moving to data analysis, you need to understand the basic tools in Excel.
Excel is made up of rows, columns, and cells.
You can enter text, numbers, or dates into Excel.
A formula is used to perform calculations. The equal sign is very important in Excel because formulas must begin with =.
=SUM(.).Sorting helps you organize your data in a clear order.
Filtering helps you view only the specific data you need.
Excel tutorial
Learn how to analyze a Superstore Sales dataset step by step using Microsoft Excel. This tutorial covers cleaning, analysis, simple visualizations, and insight generation.
Watch the Loom tutorialObserve important columns such as Order ID, Product Name, Sales, Profit, Discount, Category, Quantity, and Segment.
Check for empty cells, correct data types, duplicate records, and clear column headers before analyzing the data.
Use formulas like =SUM( to calculate total sales,
total quantity, and other key values.
Create PivotTables to find top products and analyze category performance.
Identify top products, analyze category performance, create a simple chart, and summarize your findings.
Excel dashboard
Learn how to create a beginner-friendly Excel dashboard using pivot tables, charts, slicers, and clear dashboard layout.
Watch on YouTubeEnsure every column has a clear header and remove empty rows.
Use Category in Rows and Revenue in Values to summarize performance.
Use column charts to compare categories and see performance clearly.
Arrange charts on one sheet and add titles, labels, and clear spacing.
Power BI basics
Power BI helps you analyze data and create dashboards that turn raw information into meaningful visuals and insights.
Learn the ribbon, report view, data view, model view, fields panel, and visualizations panel.
Use Get Data, then clean your dataset in Power Query before analysis.
Create calculations such as Total Sales, Total Profit, and Total Quantity.
After cleaning and measures, you are ready to create reports and dashboards.
Power BI dashboard
Build a dashboard with key metric cards, category charts, sales trends, region profit visuals, and slicers for interaction.
Create cards for Total Sales, Total Profit, Total Quantity, and Total Discount.
Create category charts, sub-category charts, and a line chart for sales trends.
Use slicers for Region, Category, and Order Date so users can explore the data.
Use your dashboard to answer questions about sales, profit, discounts, and trends.
SQL tutorial
SQL helps data analysts retrieve, filter, sort, and summarize data from databases.
SELECT Category, SUM(Sales)
FROM superstore
GROUP BY Category
HAVING SUM(Sales) > 1000
ORDER BY SUM(Sales) DESC;
Practice datasets