Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

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 requeriment is to create three advance cards showing the percentage of users who registered by channel:

dax: R_Users = distinctcount([IdUser])

 

usersbychannel.png

 

 

 

 

 

 

 

In my table I'm using a measure that is an absolute numbers but showing as % of grand total:pct.png

 

 

 

 

 

Now. I am trying to represent the information based on my table, but with cards, so I need to use three cards to show those %s. I'm doing this with visual level filters but is not working, it always shows 100%.

On visual level filters of each card, I'm usign the value of each channel and as I said, it is not working:

 

filter.png

Is it possible to use visual level filters with advance cards? Or do I need to create a dax formula with the % of each channel?

 

Thanks in advance

 

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

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.

View solution in original post

3 REPLIES 3
jdbuchanan71
Super User
Super User

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.

Anonymous
Not applicable

Thanks @jdbuchanan71  it worked perfect. As I am new to DAX, should I do this for all dimensions? Let's say I want to do this again, but for region. Should it look like this?:

 

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

 

You would, yes.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors