Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
I have data from a survey for 1000+ respondents asking what customers are using today vs tomorrow split across 4 dimensions.
The percentage is calculated as a ratio of that category to the overall count.
But when I use the Filters Pane to only show one of the categories, the percentage is recalculated on the new base as per the Filters. Is there a way it is calculated on the grand total and not the sliced value for that. Is there any workaround to avoid this?
Here's the sample graph - overall (first image) and the Filtered for USE NOW category only (second image):
Is there a way I can calculate the the percentage for individual category (e.g. USE NOW in this example) (when filtering on visual for that category) over the grand total instead of the total rows after filtering.
Here's what the table structure looks like.
Thanks in advance.
Cheers,
Nikhil
Solved! Go to Solution.
Hi @batranikhil ,
Create a measure as below:
Measure =
var _count1=CALCULATE(COUNT('Table'[Value]),FILTER(ALL('Table'),'Table'[Value]=MAX('Table'[Value])&&'Table'[Attribute]=MAX('Table'[Attribute])))
var _count2=CALCULATE(COUNT('Table'[Attribute]),FILTER(ALL('Table'),'Table'[Attribute]=MAX('Table'[Attribute])))
Return
DIVIDE(_count1,_count2)
And you will see:
For the related .pbix file,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
Hi @batranikhil ,
Create a measure as below:
Measure =
var _count1=CALCULATE(COUNT('Table'[Value]),FILTER(ALL('Table'),'Table'[Value]=MAX('Table'[Value])&&'Table'[Attribute]=MAX('Table'[Attribute])))
var _count2=CALCULATE(COUNT('Table'[Attribute]),FILTER(ALL('Table'),'Table'[Attribute]=MAX('Table'[Attribute])))
Return
DIVIDE(_count1,_count2)
And you will see:
For the related .pbix file,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
Thanks Kelly. Will try this. Thanks!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
102 | |
66 | |
48 | |
40 | |
34 |
User | Count |
---|---|
166 | |
112 | |
60 | |
56 | |
37 |