Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

Add total bar to bar chart when multiple values are selected

Hi, I have a requirement where I have to add a total bar to a bar graph but it should be visible only when 2 or more values are selected in the slicer. Otherwise when only one value is selected it s...
  • Greg_Deckler's avatar
    2 years ago

    Anonymous OK, I was able to do it using the following measure coupled with a disconnected table. See PBIX attached below signature.

    Measure = 
        VAR __Tiers = DISTINCT( 'Table'[Tier] )
        VAR __Count = COUNTROWS( __Tiers )
        VAR __ShowTotal = IF( __Count > 1, TRUE(), FALSE() )
        VAR __Tier = MAX( 'Tiers'[Tier] )
        VAR __Result = 
            SWITCH( TRUE(),
                __Tier IN __Tiers, SUMX( FILTER( 'Table', [Tier] = __Tier ), [Value] ),
                __Tier = "Total" && __ShowTotal, SUMX( 'Table', [Value] ),
                BLANK()
            )
    RETURN
        __Result