Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Visual Level filter on advance card

Hi,   I have a table with two values. One is my measure that is #users registered and the other value is the channel. I can add a table and show the percentage of users sliced by the channel. My r...
  • jdbuchanan71's avatar
    7 years ago

    Hello Anonymous 

    You should be able to do it with a singe measure.

    Pct of All Users =
    DIVIDE ( 
        [R_Users], 
        CALCULATE ( 
            [R_Users], 
            ALL ( ChannelID ) 
        ) 
    )

    Then you put that in a card and set the channel as a visual level filter.  That will control the chanel that feeds the numerator.