Forum Discussion

dwauer's avatar
dwauer
Frequent Visitor
2 years ago
Solved

Pivot table progress bar

Hello again,   I tried to get a solution but I cant find the right one.   My problem is, I need a pivot table which can me show my progress of production:     I want to get a progress ba...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi dwauer ,

     

    First we change the measure.

    Measure = 
    var _a=COUNTROWS(FILTER(ALL('Table'),'Table'[Art-Nr]=MAX('Table'[Art-Nr]) && 'Table'[Prod-Nr]=MAX('Table'[Prod-Nr])))
    var _b=COUNTROWS(FILTER(ALL('Table'),'Table'[Art-Nr]=MAX('Table'[Art-Nr]) && 'Table'[Prod-Nr]=MAX('Table'[Prod-Nr]) && 'Table'[State]="Ready"))
    var _c=IF(ISBLANK(DIVIDE(_b,_a)),0,DIVIDE(_b,_a))
    var _d=IF(ISFILTERED('Table'[Prod-Nr]),_c,BLANK())
    RETURN _d

    Then you can open [Row Subtotals] in the [visual] pane and return to the top level of the matrix.

    Currently Power BI Desktop does not support the display of progress charts in subtotals on expanded matrices.

     

    You can post your idea to Ideas . https://ideas.powerbi.com/ideas/

    What’s more, if a feedback is high voted there by other customers, it will be promising that Microsoft Product Team will take it into consideration when designing the next version in the future.

     

    Best Regards,

    Neeko Tang

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