Skip to main content

Final Project – Part 2: Building the Calculations Layer HTML pr

Final Project – Part 2: Building the Calculations Layer

In this second part of the Final Project, you will create the calculations layer that powers your Sales Dashboard. This layer transforms raw data into meaningful insights using formulas, helper columns, KPIs, and summary metrics.

A well‑designed calculations layer is essential for any professional dashboard because it ensures:

  • Clean and reliable results
  • Easy updates when new data is added
  • Clear separation between raw data and analysis
  • Consistent formulas across the entire workbook

You will apply skills from Modules 2, 3, 4, 5, and 6 to build a solid analytical foundation.


1. Create a New Sheet for Calculations

Create a worksheet named Calculations. This sheet will contain:

  • Summary metrics (KPIs)
  • Helper tables
  • Monthly totals
  • Category totals
  • Region totals

Keeping calculations separate from the dashboard improves clarity and prevents accidental edits.


2. Create Key Performance Indicators (KPIs)

Start by calculating the main KPIs that will appear in the dashboard:

  • Total Sales
  • Total Quantity Sold
  • Average Order Value
  • Top Product
  • Best Region

• Total Sales

=SUM(Table1[Total Sales])

• Total Quantity Sold

=SUM(Table1[Quantity])

• Average Order Value

=AVERAGE(Table1[Total Sales])

See: Lesson 5.5 – Basic Statistics


3. Create Monthly Sales Summary

To build line charts and trend analysis, create a monthly summary table.

Steps:

  1. Create a column with all months (Jan–Dec).
  2. Use SUMIFS to calculate monthly totals.

• Monthly Total Sales

=SUMIFS(Table1[Total Sales], Table1[Date], ">=1/"&A2&"/"&YEAR(TODAY()), Table1[Date], "<=31/"&A2&"/"&YEAR(TODAY()))

Replace A2 with the cell containing the month number (1–12).

See: Lesson 3.3 – Math Functions


4. Create Category Summary

This summary will feed your pie chart and category analysis.

• Total Sales by Category

=SUMIFS(Table1[Total Sales], Table1[Category], A2)

Where A2 contains the category name.

See: Lesson 4.3 – Filtering Data


5. Create Region Summary

This summary will be used for bar charts and regional comparisons.

• Total Sales by Region

=SUMIFS(Table1[Total Sales], Table1[Region], A2)

Where A2 contains the region name.


6. Create Helper Columns (Optional but Recommended)

Helper columns make your dashboard more flexible and easier to maintain.

• Year

=YEAR([@Date])

• Month Number

=MONTH([@Date])

• Month Name

=TEXT([@Date], "mmm")

These columns help with sorting, grouping, and chart creation.

See: Lesson 3.5 – Text Functions


7. Apply Conditional Formatting to KPIs

Highlight key values to make them easier to read:

  • Green for positive trends
  • Red for low performance
  • Bold formatting for totals

See: Lesson 4.4 – Conditional Formatting


8. Organize the Calculations Sheet

A clean calculations sheet is essential. Use:

  • Clear section titles
  • Light borders
  • Consistent formatting
  • Freeze Panes to keep headers visible

See: Lesson 6.2 – Freeze Panes


9. Practical Exercise

  1. Create a worksheet named FP_Part2_Calculations.
  2. Calculate Total Sales, Total Quantity, and Average Order Value.
  3. Create a monthly summary table using SUMIFS.
  4. Create category and region summary tables.
  5. Add helper columns to your main dataset.
  6. Apply conditional formatting to highlight KPIs.
  7. Organize the sheet with clear sections and formatting.

Next Part

Final Project – Part 3: Creating Visualizations

Comments

Popular posts from this blog

Alfred Marshall – The Father of Modern Microeconomics

  Welcome back to the blog! Today we explore the life and legacy of Alfred Marshall (1842–1924) , the British economist who laid the foundations of modern microeconomics . His landmark book, Principles of Economics (1890), introduced core concepts like supply and demand , elasticity , and market equilibrium — ideas that continue to shape how we understand economics today. Who Was Alfred Marshall? Alfred Marshall was a professor at the University of Cambridge and a key figure in the development of neoclassical economics . He believed economics should be rigorous, mathematical, and practical , focusing on real-world issues like prices, wages, and consumer behavior. Marshall also emphasized that economics is ultimately about improving human well-being. Key Contributions 1. Supply and Demand Analysis Marshall was the first to clearly present supply and demand as intersecting curves on a graph. He showed how prices are determined by both what consumers are willing to pay (dem...

Unlocking South America's Data Potential: Trends, Challenges, and Strategic Opportunities for 2025

  Introduction South America is entering a pivotal phase in its digital and economic transformation. With countries like Brazil, Mexico, and Argentina investing heavily in data infrastructure, analytics, and digital governance, the region presents both challenges and opportunities for professionals working in Business Intelligence (BI), Data Analysis, and IT Project Management. This post explores the key data trends shaping South America in 2025, backed by insights from the World Bank, OECD, and Statista. It’s designed for analysts, project managers, and decision-makers who want to understand the region’s evolving landscape and how to position themselves for impact. 1. Economic Outlook: A Region in Transition According to the World Bank’s Global Economic Prospects 2025 , Latin America is expected to experience slower growth compared to global averages, with GDP expansion constrained by trade tensions and policy uncertainty. Brazil and Mexico remain the largest economies, with proj...

Fundamental Analysis Case Study NVIDIA

  Executive summary NVIDIA is analyzed here using the full fundamental framework: balance sheet, income statement, cash flow statement, valuation multiples, sector comparison, sensitivity scenarios, and investment checklist. The company shows exceptional profitability, strong cash generation, conservative liquidity and net cash, and premium valuation multiples justified only if high growth and margin profiles persist. Key investment considerations are growth sustainability in data center and AI, margin durability, geopolitical and supply risks, and valuation sensitivity to execution. The detailed numerical work below uses the exact metrics you provided. Company profile and market context Business model and market position Company NVIDIA Corporation, leader in GPUs, AI accelerators, and related software platforms. Core revenue streams : data center GPUs and systems, gaming GPUs, professional visualization, automotive, software and services. Strategic advantage : GPU architecture, C...