Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi
Need help,
I want row wise 100% of category and sub category please suggest DAX code
I am using Matrix Visual for this, Category and Subcategory are Rows and A,B,C,D are single column , Please help
Solved! Go to Solution.
@Anonymous , You want % of row-wise total for a measure M1 . Sub Category on column
Divide([Measure], calculate([Measure],removfilters(Table[ Sub Category]) ) )
or
Divide([Measure], calculate([Measure],filter(allselected(Table), Table[Category] = max(Table[Category]) ) ) )
Percent of Total and Percent of SubTotal https://www.youtube.com/watch?v=6jTildcV2ho
@Anonymous , You want % of row-wise total for a measure M1 . Sub Category on column
Divide([Measure], calculate([Measure],removfilters(Table[ Sub Category]) ) )
or
Divide([Measure], calculate([Measure],filter(allselected(Table), Table[Category] = max(Table[Category]) ) ) )
Percent of Total and Percent of SubTotal https://www.youtube.com/watch?v=6jTildcV2ho
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
17 | |
16 |
User | Count |
---|---|
37 | |
20 | |
19 | |
17 | |
11 |