Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Percent By Group - Cluster Column - Denominator Not Calculating Properly

Hi All,   I am having an continuing issue with grouping a cluster column chart and showing the percentages of each group.   Original Post: https://community.powerbi.com/t5/Desktop/Percent-By-Grou...
  • AlB's avatar
    AlB
    7 years ago

    Hi Anonymous 

    Try this modification to your measure:

    Group% 2 = 
    VAR _catTot2 = CALCULATE (
            DISTINCTCOUNT ( 'Sample Data'[ID] );
            ALL ( 'Sample Data'[Delivery Status] ) 
        )
    RETURN
        DIVIDE ( DISTINCTCOUNT ('Sample Data'[ID]); _catTot2 ) + 0

    Please mark the question solved when done and consider giving kudos if posts are helpful.

    Cheers  Datanaut