Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
 
					
				
		
I currently have 2 tables: Sheet 1 and Census data.
I have built the census data to show:
Census Data Age/Gender =
DATATABLE(
"Age Group Name",STRING,
"Male",INTEGER,
"Female",INTEGER,
"Total",INTEGER,
{
{"0-4 yrs",169731,161784,331515},
{"5-14 yrs",344848,330189,675037},
{"15-24 yrs",292492,283960,576452},
{"25-34 yrs",318401,341009,659410},
{"35-44 yrs",368527,378354,746881},
{"45-54 yrs",311036,315009,626045},
{"55-64 yrs",252556,256402,508958},
{"65-74 yrs",184462,189046,373508},
{"75-84 yrs",89313,107191,196504},
{"85+ yrs",23062,44493,67555}
}
)
Solved! Go to Solution.
You need to use the Age Group column from your Census table in the matrix instead, and then you can use this measure to get your result.
NewMeasure =
DIVIDE (
    COUNT ( Sheet1[Event ID] ),
    AVERAGE ( 'Census Data Age/Gender'[Total] )
) * 100000
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
You need to use the Age Group column from your Census table in the matrix instead, and then you can use this measure to get your result.
NewMeasure =
DIVIDE (
    COUNT ( Sheet1[Event ID] ),
    AVERAGE ( 'Census Data Age/Gender'[Total] )
) * 100000
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Followed what you said there and my numbers seem a little off. E.g. week 27 0 -4yrs has 6 counts so should be divided by 331515 *100000 = 1.8
where i get  trying to figure out where the calculations are deviating.
Thanks for the help so far @mahoneypat
@Anonymous In my file, I do have 1.8 for 27 weeks 0-4 yrs. Do you have other filters on the visual?
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | 
| User | Count | 
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |