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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
xppdev
Frequent Visitor

Displaying project status.

I have a project where we are trying to display a list of projects with defined steps and statuses. In excel, we are currently using conditional formatting of cells, not really the best way, but it does provide a glance and the status of each line.

The rows have the project name and the Columns have the milestones,( Currently 5 defined.) Each intersecting cell is colored based on the status of "On Track", "Slipping","Off Track", "On Hold", "Done" and "Not Started".

 

Any ideas on what visuals I can use to best display project status? I keep running into issue where I can't control conditional formatting to display properly. I am also open to a fresh idea of how the effectively show the project status in a new format that would include the project and predefined milestones. I did try the custom "Table Heat Map" and that was close, but just didn't look polished enough.

 

Thank you in advance for any ideas!

3 REPLIES 3
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @xppdev,

 

Have you tried showing the project status on the Matrix visual with conditional formatting for measurement(this is the closest thing I can think on Power BI currently)? See my sample below.Smiley Happy

 

result1.PNG

I assume you have a table called "Table1" like below.

 

t1.PNG

 

1. Use the formula below to create a measure.

CountOfCurrentStatus = 
VAR currentStatus =
    FIRSTNONBLANK ( Table1[Status], 1 )
RETURN
    CALCULATE ( COUNTA ( Table1[Status] ), Table1[Status] = currentStatus )

2. Show the measure on the Matrix with Project Name and Status like below.

 

r0.PNG

 

3. Apply condition formation for the measure like below.

 

cf1.PNG

 

Regards

That looks like a great idea, but I need each status to have it's own color.

I can get 3 with the matrix's conditional formatting.

Appologies for not including an image earlier, I was having issues getting one added.

 

My thought is there is a better way to show the status of the project. Since each of the columns should be dependent on the others, a final status display with the status should work.

I may have to head the custom visual route.

 

2017-02-24_10-15-13.png

 

Thank you again for the idea!

Dear,

Kindly need to check if you were able to accomplish the mentioned image through Power BI. I have a similar requirement and would like to know the same. 

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors