This tutorial demonstrates creating a dynamic and interactive financial dashboard in Excel, comparing Actuals, Budget (Plan), and Previous Year data for store locations. The process includes data connections, formula setup, automations, and advanced visualizations using both native Excel tools and the Zebra BI add-in.
TSales
).=YEAR(TODAY())
) for current year.XLOOKUP
to fetch values matching the selected Year, Month, and Store.=XLOOKUP(
[Year]&[Month]&[Store],
Actuals[Year]&Actuals[Month]&Actuals[Store],
Actuals[Sales]
)
For previous year: subtract 1 from Year reference.
Plan Lookup (Different Table Shape):
XLOOKUP
(or INDEX/MATCH
) to match Store in rows, and Month in columns.(Actual / PreviousYear) - 1
(Actual / Plan) - 1
IFERROR()
to avoid display errors.Summary:
With these techniques, you can build an interactive dashboard in Excel, automate monthly reporting, and add a polished, insightful layer using Zebra BI. These skills not only save time but also empower clear, decision-ready reporting for finance teams.