Power BI Dashboard Migration
Goal: Recreate the existing Power BI report as a custom dashboard app using the provided CSV/DAX exports as the source of truth.
Project Goals
- Recreate report visuals and KPIs exactly (no approximation).
- Match all KPI values against source data.
- Build a dashboard UI with filters, charts, and tables.
- Commit after each step.
Repo Structure
app/ # Simple dashboard app (static for now)
data/ # Local CSVs + manifest
/docs/ # Migration docs
Getting Started (Local)
Open app/index.html in a local static server (CSV fetch requires HTTP):
python -m http.server 8080
Then visit: http://localhost:8080/app/
Next Steps
- Add CSV exports to
/dataand updatedata/manifest.json. - Define KPI formulas in
docs/kpi-definitions.md. - Implement calculations in
app/app.js.
Description
Languages
JavaScript
53.9%
CSS
24.5%
HTML
21.6%