Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
The message you are trying to access is permanently deleted.
I need to divide the deaths by population(pop) to get the Death Rate for that Disease and year. Population for the same year is repeted 10 times because the diseases/causes are 10 different diseaseas. How can I achieve this? Please help.
Solved! Go to Solution.
Hi @Annah ,
try this.
Population = SUMX(SUMMARIZE('Table','Table'[Year_State],"@Pop",AVERAGE('Table'[Pop])),[@Pop])
Death Rate = DIVIDE(SUM('Table'[Deaths]),[Population])
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @Annah ,
try this.
Population = SUMX(SUMMARIZE('Table','Table'[Year_State],"@Pop",AVERAGE('Table'[Pop])),[@Pop])
Death Rate = DIVIDE(SUM('Table'[Deaths]),[Population])
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @Annah ,
You can simply create a new calculated column "Death Rate", and put in the formula:
Death Rate = 'Table'[Deaths] / 'Table'[Pop]
Then specify the format of the new column as percentage
Please give kudos if my answer helps, and mark as a solution if it resolves the issue 🙂
Hello, I have already used that calcuation but it did not resolve the issue. Thank you anyway. I appreciate your help
You mean to say whatever popullation is showing is correct. If yes then add below measure
Rate=Divide(Deaths,Poppulation,Blank())
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
11 |