cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
dgadzinski
Helper I
Helper I

Maturity of product - visual

Hello, 

I have an issue. I need to show:

  • Maturity for groups
  • Implemented and Missing value for groups
    Calculation: 
  • Existing Low (Maturity): count if column Maturity = "Low"
  • Existing Medium (Maturity): count if coulumn Maturity = "Medium"
  • Existing High (Maturity): count if column Maturity = "High" 
  • Missing/ Planned = Count if column Status = "Planned" 
  • Implemented = Count if Status = "Implemented" 

I want to show all calculation as below:

dgadzinski_0-1669933157774.png

is it possible? Could you help me?

All details are in pbix file: 

https://uewrc-my.sharepoint.com/:u:/g/personal/170361_student_ue_wroc_pl/Ea6VzmhDVCVFvI4Yx1WtvacBrH5... 

3 REPLIES 3
v-jialluo-msft
Community Support
Community Support

Hi  @dgadzinski ,

 

The display method you expect may not yet be supported, and you can try splitting it into two visuals to show the data separately.

vjialluomsft_0-1670208505564.png

 

Best Regards,
Gallen Luo

v-jialluo-msft
Community Support
Community Support

Hi @dgadzinski ,

 

Please follow these steps:

(1) Create new measures

Implemented = CALCULATE(COUNTROWS(Arkusz1),FILTER(ALL(Arkusz1),Arkusz1[Status]="Implemented" && Arkusz1[Group] = MAX(Arkusz1[Group])))

 

High = CALCULATE(COUNTROWS(Arkusz1),FILTER(ALL(Arkusz1),Arkusz1[Maturity]="High" && Arkusz1[Group] = MAX(Arkusz1[Group])))

 

(2)Final output

vjialluomsft_0-1669946542043.png

 

 

Best Regards,

Gallen Luo

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hello @v-jialluo-msft , 

Can I add maturity (Low, High, Medium) as separate bar like this one: 

dgadzinski_0-1669962646496.png

The first bar: Implemented + Planned
The second bar: High + Medium + Low 

This is very important but I have no idea how to do this. Could you help me?

Helpful resources

Announcements
Vote for T-Shirt Design

Power BI T-Shirt Design Challenge 2023

Vote for your favorite t-shirt design now through March 28.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

March Events 2023A

March 2023 Events

Find out more about the online and in person events happening in March!

Top Solution Authors