Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
minap
Regular Visitor

Visual showing Project progression, rag status, remaining days left and order by priority.

Im trying to replicate an excel chart in Powerbi, where it show each projects, progression its rag status and the days remaining like below can anyone help, I have tried clustered bar chart, gantt chart but not working. 

 

minap_0-1742765275511.png

 

3 REPLIES 3
Tahreem24
Super User
Super User

@minap  Kindly share sample data with dummy records to understand your scenario.

 

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

Thank you @Tahreem24 

 

whats the best way to share the pbix file without including sensitve data ?

minap
Regular Visitor

These are my measures

Measures
In Development = CALCULATE(countrows('Inflight Project Reviews'),FILTER('Inflight Project Reviews','Inflight Project Reviews'[Status]="In Development"))
No Of Projects = COUNT('Inflight Project Reviews'[Project Code])
On Hold = CALCULATE(countrows('Inflight Project Reviews'),FILTER('Inflight Project Reviews','Inflight Project Reviews'[Status]="On Hold"))
Prioritised = CALCULATE(countrows('Inflight Project Reviews'),FILTER('Inflight Project Reviews','Inflight Project Reviews'[Status]="Prioritised"))
Projects Completed = CALCULATE(countrows('Inflight Project Reviews'),FILTER('Inflight Project Reviews','Inflight Project Reviews'[Status]="Complete"))
Ready For Development = CALCULATE(countrows('Inflight Project Reviews'),FILTER('Inflight Project Reviews','Inflight Project Reviews'[Status]="Ready For Development"))
Scope Review = CALCULATE(countrows('Inflight Project Reviews'),FILTER('Inflight Project Reviews','Inflight Project Reviews'[Status]="Scope Review"))
Waiting On Customer = CALCULATE(countrows('Inflight Project Reviews'),FILTER('Inflight Project Reviews','Inflight Project Reviews'[Status]="Waiting On Customer"))
Waiting on Vendor = CALCULATE(countrows('Inflight Project Reviews'),FILTER('Inflight Project Reviews','Inflight Project Reviews'[Status]="Waiting on Vendor"))
WIP = CALCULATE(countrows('Inflight Project Reviews'),FILTER('Inflight Project Reviews','Inflight Project Reviews'[Status]="WIP"))
DaysDelayed = DATEDIFF(SELECTEDVALUE('Inflight Project Reviews'[ProposedGoLiveDate]), TODAY(), DAY)
Days Used = DATEDIFF('Inflight Project Reviews'[Estimated Days],'Inflight Project Reviews'[Days Remaining],DAY)
Days Remaining = DATEDIFF(TODAY(),SELECTEDVALUE('Inflight Project Reviews'[ProposedGoLiveDate]),DAY)
Days Overrun = (DATEDIFF('Inflight Project Reviews'[Days Used],SELECTEDVALUE('Inflight Project Reviews'[ProposedGoLiveDate]),DAY))
Estimated Days = DATEDIFF(SELECTEDVALUE('Inflight Project Reviews'[ProjectStartDate]),SELECTEDVALUE('Inflight Project Reviews'[ProposedGoLiveDate]),DAY)

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.