The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have 1 table with a column of continuous dates over 4 years, and a column of ages.
I want a measure that shows the percentage of each age group against the yearly totals, rather than total over the 4 years.
The current measures I have are:
- COUNT(Table[Age])
- COUNTROWS(ALL(Table) ............... which gives me all rows rather than all rows per year
then - DIVIDE([AgeCount],[TotalCount])
Apologies for this probably simple question!
Many thanks.
Solved! Go to Solution.
Hi !
You can use the following DAX measures to get desired output;
Age Count = COUNT(Employee[Age])
Total Age Count = CALCULATE([Age Count], ALLSELECTED(Employee[Age Group]))
% Age = DIVIDE([Age Count], [Total Age Count])
Regards,
Hasham
Hi !
You can use the following DAX measures to get desired output;
Age Count = COUNT(Employee[Age])
Total Age Count = CALCULATE([Age Count], ALLSELECTED(Employee[Age Group]))
% Age = DIVIDE([Age Count], [Total Age Count])
Regards,
Hasham
This is great, thanks!
@sparker22
If you can share some sample data and the expected result, it would be of great help.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
User | Count |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
20 | |
12 | |
9 | |
7 |