Business Data Analytics & Advanced Excel

Clean data, build dashboards, create reports, and visualize business insights using Power BI.

Level: Beginner–Advanced Beginner: 1 month β€’ Intermediate: 2 months β€’ Advanced: 3 months Contact for pricing

Prerequisites

No prior experience required β€” open to beginners.

Certificate

Awarded by Rescue Academy on successful completion of the program's assessments and final project.

Learn Online β€” Live Classes

Register, receive your schedule, and join live instructor-led Business Data Analytics & Advanced Excel classes on Zoom. Assignments, instructor feedback, and a certificate on completion.

Learn In Person

Attend Business Data Analytics & Advanced Excel classes in person in Juba with hands-on labs, instructor mentorship, and a certificate on completion.

What You'll Learn

  • Data Entry & Cleaning
  • Advanced Excel Functions & Visualization
  • Dashboard Creation & Business Reporting
  • Introduction to Power BI
  • Business Forecasting & Data Analysis

Curriculum

Beginner

Full lessons available below

Module 1: Data Entry & Cleaning

Learning objectives

  • Clean and standardize business data

Lessons

  • Consistent Data Entry
  • Data Cleaning Checklist

Module 2: Advanced Excel Functions & Visualization

Learning objectives

  • Use advanced functions and charts for analysis

Lessons

  • SUMIFS/COUNTIFS
  • Choosing the Right Chart

Module 3: Dashboard Creation & Business Reporting

Learning objectives

  • Build an interactive one-page dashboard

Lessons

  • Dashboard Layout Principles
  • Excel Slicers

Module 4: Introduction to Power BI

Learning objectives

  • Move from Excel into Power BI for reporting

Lessons

  • Power BI Basics
  • Building Your First Power BI Visual

Module 5: Business Forecasting & Data Analysis

Learning objectives

  • Forecast simple business trends

Lessons

  • Trend-Based Forecasting
  • Excel FORECAST Function

Intermediate

Outline β€” full lessons coming soon

Module 1: Power Query in Depth

Learning objectives

  • Combine and clean data at scale

Lessons

  • Power Query Basics
  • Combining Multiple Data Sources

Module 2: Data Modeling in Power BI

Learning objectives

  • Build simple relationships between data tables

Lessons

  • Relationships Between Tables
  • Basic DAX Measures

Module 3: Advanced Dashboards

Learning objectives

  • Build more interactive, multi-page reports

Lessons

  • Multi-Page Power BI Reports
  • Advanced Slicers & Filters

Module 4: Reporting for Different Audiences

Learning objectives

  • Tailor reports to different stakeholders

Lessons

  • Executive vs Operational Reports
  • Automating Recurring Reports

Module 5: Intermediate Project

Learning objectives

  • Build an integrated Excel + Power BI reporting system

Lessons

  • Planning the System
  • Build & Present the Reports

Advanced

Outline β€” full lessons coming soon

Module 1: Advanced Forecasting

Learning objectives

  • Apply more advanced forecasting techniques

Lessons

  • Seasonal Forecasting
  • Scenario-Based Forecasting

Module 2: Data Governance for Reporting

Learning objectives

  • Apply data governance in a reporting context

Lessons

  • Data Accuracy & Ownership
  • Version Control for Reports

Module 3: Automating Reporting Workflows

Learning objectives

  • Automate recurring reporting tasks

Lessons

  • Power Automate Basics (Conceptual)
  • Scheduled Refreshes in Power BI

Module 4: Presenting to Leadership

Learning objectives

  • Present complex analysis simply to leadership

Lessons

  • Executive Communication of Data
  • Handling Difficult Questions on Data

Module 5: Capstone Project

Learning objectives

  • Deliver a complete business intelligence solution

Lessons

  • Planning the Capstone
  • Build, Automate & Present

Full Lessons β€” Beginner Level

1. Data Entry & Cleaning

This program focuses on turning business data into decision-ready reports using Excel and Power BI together β€” distinct from spreadsheet formula mastery alone. It starts where all good analysis starts: clean, reliable data.

  • Consistent data entry: Use the same format for dates, categories, and names every time β€” "Juba", "juba", and "JUBA" will be treated as three different values by most tools.
  • Removing duplicates: Use Excel's Remove Duplicates tool (Data tab) to catch accidental repeated entries.
  • Handling missing data: Decide deliberately whether to fill, estimate, or exclude missing values β€” never leave it ambiguous in a shared file.
  • Data validation: Set up dropdown lists (Data → Data Validation) for fields like category or region to prevent typos at the source.

Practical Skill: Take a messy sample dataset (inconsistent capitalization, some duplicates, a few missing values) and clean it into a consistent, analysis-ready table.

Try it Yourself — Data Cleaning Checklist

=== BEFORE (messy) ===
Region      Sales    Date
juba        12000    3/1/2026
Juba        8000     2026-03-02
JUBA        β€”        03-03-26
Wau         15000    2026-03-01

=== DATA CLEANING CHECKLIST ===
[ ] Standardize text casing (e.g. Proper Case for regions)
[ ] Standardize date format throughout (choose one: YYYY-MM-DD)
[ ] Decide how to handle the missing "β€”" value: fill, estimate,
    or exclude β€” and document your decision
[ ] Remove exact duplicate rows (Data -> Remove Duplicates)
[ ] Add data validation dropdowns for Region going forward

=== AFTER (cleaned) ===
Region      Sales    Date
Juba        12000    2026-03-01
Juba        8000     2026-03-02
Wau         15000    2026-03-01

2. Advanced Excel Functions & Visualization

With clean data in hand, Excel's analytical functions and charts turn raw numbers into visible patterns a business can act on.

  • SUMIFS/COUNTIFS: Sum or count with multiple conditions, e.g. total sales for "Juba" AND "March."
  • Charts: Line charts for trends over time, bar charts for comparing categories, pie charts sparingly for simple proportions.
  • Sparklines: Tiny in-cell charts that show a trend at a glance within a table, useful for compact reports.
  • Choose the chart type based on the question being answered, not by what looks most decorative.

Practical Skill: Use SUMIFS to build a region-by-month sales summary table from raw transaction data, then chart it as a line chart showing the trend per region.

Try it Yourself — SUMIFS Summary & Chart

=== SUMIFS EXAMPLE ===
=SUMIFS(SalesAmount, Region, "Juba", Month, "March")
  Adds sales where Region = "Juba" AND Month = "March"

=== REGION-BY-MONTH SUMMARY (built with SUMIFS) ===
  Region    Jan       Feb       Mar
  Juba      120,000   135,000   142,000
  Wau        80,000    95,000    88,000
  Malakal    60,000    58,000    70,000

Chart choice: Line chart with Month on the x-axis and one
line per region β€” clearly shows the trend for each region
over time, which a bar chart per month would make harder
to compare.

3. Dashboard Creation & Business Reporting

A dashboard combines several visualizations and key numbers on one screen so a business owner or manager can understand performance in seconds, not minutes.

  • Layout principles: Most important numbers top-left (where eyes go first), supporting detail below, consistent color coding throughout.
  • Interactive elements: Excel Slicers let a viewer filter a dashboard by region, month, or category without editing formulas.
  • Keep it focused: A dashboard answering "how is the business doing?" needs 4-6 key visuals, not everything you could possibly chart.
  • Update discipline: A dashboard is only useful if it's kept current β€” build it in a way that refreshes easily from new data.

Practical Skill: Combine your region-by-month summary and 2 other metrics into a one-page Excel dashboard with a Slicer to filter by region.

Try it Yourself — Dashboard Layout Blueprint

=== ONE-PAGE BUSINESS DASHBOARD ===

+------------------------------------------------------+
| BUSINESS PERFORMANCE DASHBOARD β€” March 2026            |
| [Slicer: Region β–Ύ]                                     |
+------------------------------------------------------+
| Total Sales: 300,000 SSP   | Top Region: Juba          |
+------------------------------------------------------+
| [Line Chart: Sales Trend by Month]                     |
+------------------------------------------------------+
| [Bar Chart: Sales by Product Category]                 |
+------------------------------------------------------+

[ ] Slicer connected to all charts (not just one table)
[ ] Key totals shown as large, easy-to-read numbers
[ ] No more than 4-6 visuals on the page

4. Introduction to Power BI

Power BI extends what's possible beyond Excel for businesses whose reporting needs grow: connecting multiple data sources, building more interactive reports, and sharing live dashboards.

  • When to move beyond Excel: Multiple data sources, larger datasets, or a need to share live (not static) reports with a team.
  • Power Query: Power BI's data-cleaning and combining engine β€” similar concepts to Excel's data cleaning, but built for repeatable, larger-scale imports.
  • Visuals and reports: Drag-and-drop visual building, similar in spirit to Excel charts but more interactive and easier to combine into a polished report.
  • Sharing: Power BI reports can be published and shared so a team always sees the latest data, rather than emailing updated spreadsheet versions back and forth.

Practical Skill: Import a sample dataset into Power BI Desktop (free), build one visual, and compare the experience to building the equivalent chart in Excel.

Try it Yourself — Excel to Power BI Comparison

=== EXCEL vs POWER BI β€” WHEN TO USE WHICH ===

Use Excel when:
  - Single dataset, manageable size
  - You need full manual formula control
  - Report is shared as a file, not live

Use Power BI when:
  - Multiple data sources need combining
  - Data will be refreshed regularly and shared live
  - Report needs deeper interactivity (cross-filtering
    between multiple visuals at once)

=== FIRST POWER BI STEPS ===
1. Open Power BI Desktop -> Get Data -> Excel
2. Select your cleaned sales table
3. Drag "Region" and "Sales" into a new Bar Chart visual
4. Add a Slicer for "Month" to make it interactive

5. Business Forecasting & Data Analysis

Looking backward explains what happened; basic forecasting helps a business plan for what's likely to happen next β€” using simple, defensible methods, not guesswork.

  • Trend-based forecasting: If sales have grown steadily by about 5% per month, a simple forecast extends that trend forward β€” useful for short-term planning.
  • Excel's FORECAST function: Projects a future value based on historical data using linear trend estimation.
  • Seasonality: Many businesses have predictable busy/slow periods (e.g. school-term related, holiday-related) β€” factor this into forecasts rather than assuming a flat trend.
  • Forecasts are estimates, not guarantees: Always present a forecast with its assumptions stated clearly.

Practical Skill: Use Excel's FORECAST (or TREND) function on your region-by-month sales data to project the next month's expected sales.

Try it Yourself — Simple Sales Forecast

=== FORECAST FUNCTION EXAMPLE ===
=FORECAST.LINEAR(new_x, known_y_values, known_x_values)

Example:
  Known months (x): 1, 2, 3   (Jan, Feb, Mar)
  Known sales (y):  120000, 135000, 142000
  Forecast for month 4:
    =FORECAST.LINEAR(4, {120000,135000,142000}, {1,2,3})
    Result: approximately 152,333

=== STATING YOUR ASSUMPTIONS ===
  "This forecast assumes the current growth trend continues
   and does not account for [seasonal dip / new competitor /
   planned marketing campaign]."

Quick Quiz — Business Data Analytics Basics

Why should "Juba", "juba", and "JUBA" be standardized before analysis?
When does it make sense to move from Excel to Power BI?

Quick Tip: You are reading the free preview of this program. Practice on real business data where possible β€” register for live classes to build a complete Excel + Power BI reporting workflow with instructor feedback.

Tools & Technologies

  • Microsoft Excel
  • Microsoft Power BI
  • Google Sheets

Career Opportunities

  • Freelancer or remote worker
  • Small business owner or e-commerce operator
  • Project/administrative support role at an NGO or company

Practical Projects

  • Build an integrated Excel + Power BI reporting dashboard for a real or simulated business
  • Produce a forecast report projecting next quarter's performance with stated assumptions

Ready to register for Business Data Analytics & Advanced Excel?

WhatsApp: +211926196668 Email: rescueacademy26@gmail.com