Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Preparing Dynamic Excel Tables | Preparing Forecast-Ready Data
Excel Forecasting & Scenario Analysis

Preparing Dynamic Excel Tables

Swipe um das Menü anzuzeigen

An Excel Table (created with Ctrl+T) is far more than a formatting shortcut. It is a named, structured data container that automatically expands when you add rows, uses column header names in formulas instead of cell references, and integrates seamlessly with PivotTables, XLOOKUP, and Excel's built-in forecasting tools. Every model in this course is built on top of properly structured Excel Tables.

Converting Your Dataset to a Table

  1. Click anywhere inside your data range;
  2. Press Ctrl+T (or Insert → Table);
  3. Confirm "My table has headers" is checked → click OK;
  4. In the Table Design tab, rename the table from "Table1" to "Business_Data" (no spaces — underscores only).

The name Business_Data is what you'll use in every structured reference formula from this point forward. Choose it deliberately — renaming a table later breaks all formulas that reference it.

Using Structured References

Once converted, you can reference any column from anywhere in the workbook using this syntax:

=SUM(Business_Data[Revenue]) → total of all revenue rows =AVERAGE(Business_Data[Profit]) → average profit per order =ROWS(Business_Data[Order_ID]) → count of all data rows =MAX(Business_Data[Discount_Percent]) → highest discount applied

Conditional aggregation with SUMIF: =SUMIF(Business_Data[Year], 2024, Business_Data[Revenue])

=SUMIF(Business_Data[Region], "Europe", Business_Data[Profit])

Multi-condition aggregation with SUMIFS: =SUMIFS(Business_Data[Revenue], Business_Data[Year], 2024, Business_Data[Region], "North America")

=SUMIFS(Business_Data[Profit], Business_Data[Product_Category], "Software", Business_Data[Customer_Segment], "Enterprise")

Notice how readable these formulas are compared to cell-range equivalents. Six months from now, when you return to the model, you'll understand exactly what each formula does without tracing references.

Building the Forecast_Input_Table

In addition to the raw Business_Data table, you'll create a monthly summary table called Forecast_Input_Table. This is the direct input to all forecasting formulas in Sections 2 through 5 — one row per month, 36 rows covering January 2022 through December 2024.

The [@[Column_Name]] syntax is how structured references work inside a Table — the @ symbol means "this row." Excel writes this automatically when you click a cell within the same table while typing a formula.

Note
Note

Once this table is complete, verify it by summing the Total_Revenue column: =SUM(Forecast_Input_Table[Total_Revenue]). It must exactly match =SUM(Business_Data[Revenue]). If the two figures differ, you have a Month_Start alignment problem to fix before moving on.

Task 1: Converting Data to an Excel Table

Goal: Transform the raw dataset into a named, structured Excel Table.

  1. Click anywhere inside your cleaned dataset on the main data sheet.
  2. Press Ctrl+T. Confirm the range covers all 1,501 rows (header + 1,500 data rows) and click OK.
  3. In the Table Design tab, rename the table to Business_Data.
  4. In a blank cell on another sheet, enter =SUM(Business_Data[Revenue]) and note the total — this is your cross-check figure for the entire course.
  5. Test a SUMIFS structured reference: =SUMIFS(Business_Data[Revenue],Business_Data[Year],2024,Business_Data[Region],"North America"). Confirm it returns a plausible number smaller than total revenue.
  6. Add one test row of data at the bottom of the table. Confirm your =SUM(Business_Data[Revenue]) formula updates automatically, then delete the test row.

Task 2: Building the Forecast_Input_Table

Goal: Create the 36-month monthly summary table that all forecasting models in this course will use as their direct input.

  1. Insert a new sheet and name it Forecast_Input.
  2. In column A, paste the Period_Date values from your Calendar_Table — rows covering January 2022 through December 2024 only (36 rows).
  3. Select the full range A1:K37 and press Ctrl+T to convert it to an Excel Table. Name it Forecast_Input_Table.
  4. Build columns B through K using the formulas from the table above. Type each formula once in row 2 — Excel will prompt you to fill the column automatically when it detects a Table pattern.
  5. In a blank cell, enter =SUM(Forecast_Input_Table[Total_Revenue]) and compare it to your =SUM(Business_Data[Revenue]) figure from Task 1.5A. They must match exactly.
  6. Select the Period_Label and Total_Revenue columns and insert a Line Chart. This is your first look at the full 36-month revenue trend — keep this chart, as you'll build on it directly in Section 2.

A completed workbook is attached for comparison and troubleshooting if needed.

War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 5

Fragen Sie AI

expand

Fragen Sie AI

ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

Abschnitt 1. Kapitel 5
some-alt