Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hello,
I need help. I have turn it around every way and I just cannot find the solution.
I want my chart to have a filter %total collumn according to the collumn total unfiltred.
In the chart below, i have to column ID_BPEI (1.5m row). I do a first filter with DistinctCount (56k total distinct over the 6 column).
When I use my slicer and filter the ID_BPEI according to a score, I want the column to show the following %:
Distinct ID_BPEI filtered by the slicer/Disctinct ID_BPEI total of the column only
Ex. : 2019-2020 total column is 11 302. Lets say I use my slicer and it get the value down to 6k, I want to % to be 6k/11 302 and not 6K/Total of all the column.
How can I do that?
Solved! Go to Solution.
Hello @DominikLejeune
Please try this out;
Create a measure with the below attached DAX and use it in the visual
Check if it's working for your data or not.
If it does not work or there's any issues than share a demo data which can be more helpfull to figure this out.
Thanks & Regards
Based on the data provided, try this:
DIVIDE (
[count measure],
CALCULATE (
[count measure],
ALLEXCEPT ( 'table', 'table'[ANNEE_UNIVERSITAIRE_DIPLOMATION] )
)
)
Otherwise, we will need more information. Please refer to this post and follow the guide - https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
Hello @DominikLejeune
Please try this out;
Create a measure with the below attached DAX and use it in the visual
Check if it's working for your data or not.
If it does not work or there's any issues than share a demo data which can be more helpfull to figure this out.
Thanks & Regards
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
98 | |
61 | |
47 | |
36 | |
34 |