Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Service | Total spend |
$100 | |
Workstation | $50 |
Sharepoint | $150 |
Office 365 | $200 |
Solved! Go to Solution.
@sharpedogs I believe:
Measure =
VAR __Service = SUM('Table'[Total spend])
RETURN
__Service / SUMX(ALL('Table'),[Total spend])
@sharpedogs , Try a measure like
divide(sum(Table[Total spend]),calculate(sum(Table[Total spend]), all(Table)))
@sharpedogs , Try a measure like
divide(sum(Table[Total spend]),calculate(sum(Table[Total spend]), all(Table)))
@sharpedogs I believe:
Measure =
VAR __Service = SUM('Table'[Total spend])
RETURN
__Service / SUMX(ALL('Table'),[Total spend])
thats it.... the "All" function....
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |