March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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....
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |