Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi All,
I need to calculte ratio of each category for every project, PFB the sample data:
ProjID | Category |
1 | A |
1 | B |
1 | A |
2 | A |
2 | B |
So the ratio for project 1 for both the category is 66:33 since A will be 2/3 and B will be 1/3
for Proj 2 the ratio will be 50:50
I need to use this ratio for other calculation so we need to store this ration in below table:
Proj ID | A Ratio | B Ratio |
1 | ||
2 |
both tables are join on Proj ID column.
Please let me know if you need more clarification on above scenario.
Thank you for the help and support.
Regards,
Chayan Upadhyay
Hi @chayanupadhyay ,
Please refer to the following DAX query:
Measure = VAR a = DIVIDE ( COUNTROWS ( 'Table' ), CALCULATE ( COUNTROWS ( 'Table' ), ALL ( 'Table'[Category] ) ) ) RETURN FLOOR ( a * 100, 1 ) & ":" & FLOOR ( ( 1 - a ) * 100, 1 )
The result will like:
Best Regards,
Teige
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 |
---|---|
114 | |
94 | |
90 | |
35 | |
35 |
User | Count |
---|---|
153 | |
99 | |
82 | |
63 | |
54 |