Interactive Dashboard
Real-time project insights with embedded Power BI
π Project Progress Dashboard
Live DataMethodology
Systematic approach from raw data to insights
Data Extraction
Source data from Excel with 100+ task records
- Excel Workbook connection
- Multiple project buckets
- 8 original data fields
Power Query Transformation
ETL pipeline using M language
- Removed Description column
- Standardized date formats
- Created Priority dimension
DAX Data Modeling
Advanced calculations and relationships
- Custom Date table with CALENDAR()
- Active/Inactive relationships
- Late task detection measure
Visualization & Deployment
Interactive dashboard on Azure
- Responsive web design
- Multi-select slicers
- CI/CD with GitHub Actions
Data Architecture
Star schema with role-playing date dimension
Dimensional Model (Star Schema)
π Key DAX Measures
Date = CALENDAR(
MIN(Tasks[Start Date]),
MAX(Tasks[Due Date])
)
Year = YEAR([Date])
Month = FORMAT([Date], "MMMM")
Quarter = "Q" & QUARTER([Date])
Late =
VAR DueDate = Tasks[Due Date]
VAR CompletedDate = Tasks[Completed Date]
VAR IsCompleted = NOT(ISBLANK(CompletedDate))
RETURN
IF(
IsCompleted && CompletedDate > DueDate, TRUE(),
IF(!IsCompleted && DueDate < TODAY(), TRUE(), FALSE())
)
Data & Downloads
Explore source data and download the Power BI report
π Project Data (Excel)
OneDrive EmbeddedInteractive Excel workbook embedded from OneDrive.Explore the source dataset used for this analysis.
Power BI Report
Full .pbix file with complete data model, DAX measures, and visualizations
π οΈ Technology Stack
Azure Static Web Apps
Free tier hosting with global CDN
Power BI Embedded
Interactive visualizations
GitHub Actions
CI/CD automation
OneDrive
Excel embedding & file storage
Get In Touch
Interested in discussing this project?