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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
sharpedogs
Advocate II
Advocate II

Filter from a column using a card

Hi, 

I have a list of services with Total Spend as per below. I am going to add this to my chart as a filter lits. I want the user to click on the E-Mail and then i want a card that shows the % of that services spend compared to the total spend. I know i should be using some sort of "unfilter" in my measure but i can't seem to figure out the syntext.

 

CARD - would show (20%)  when i click on e-Mail 

 

 

ServiceTotal spend
e-Mail$100
Workstation$50
Sharepoint$150
Office 365$200

 

2 ACCEPTED SOLUTIONS
Greg_Deckler
Community Champion
Community Champion

@sharpedogs I believe:

Measure =
  VAR __Service = SUM('Table'[Total spend])
RETURN
  __Service / SUMX(ALL('Table'),[Total spend])


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

amitchandak
Super User
Super User

@sharpedogs , Try a measure like

divide(sum(Table[Total spend]),calculate(sum(Table[Total spend]), all(Table)))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@sharpedogs , Try a measure like

divide(sum(Table[Total spend]),calculate(sum(Table[Total spend]), all(Table)))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Greg_Deckler
Community Champion
Community Champion

@sharpedogs I believe:

Measure =
  VAR __Service = SUM('Table'[Total spend])
RETURN
  __Service / SUMX(ALL('Table'),[Total spend])


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

thats it.... the "All" function.... 

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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