Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
hcze
Helper II
Helper II

Calculating ratio at row level

Hi, 

A Power BI novice needs an advice. I hope the screenshot gives a good idea what I want to achieve.

 

The questions are:

1. How to calculate the loss ratio using DAX

2. How to show the ratio in % while the rest is in $

 

screen.jpg

 

The raw data looks like below

screen2.jpg

 

 

Thank you in advance!

Lin

 

 

1 ACCEPTED SOLUTION
Thim
Resolver V
Resolver V

I am sure there are way smarter ways to do it than this, but this is the way I would go. 🙂

 

Because I am having issues haven some lines that are calculated, and some lines that are not, i find it easier to calculate each line. This helps make it look more like the result you want.

 

I would make 4 meassures like this.

 

Earned Premium = CALCULATE(SUM('Table'[Amount]);
FILTER('Table';'Table'[Item]="Earned Premium")
)
 
Incurred Losses = CALCULATE(SUM('Table'[Amount]);
FILTER('Table';'Table'[Item]="Incurred Losses")
)
 
Technical Result = [Earned Premium] - [Incurred Losses]
 
Loss Ratio = [Incurred Losses] / [Earned Premium]
 
At the Tab called Modeling, you can change the format for each meassure you have made, so some can be in USD, and others in %.
 
The finally select the Matrix, and set Country under Columns, and alle 4 meassure under value, then click the pencel, and under values, check "Show on rows" as on.
 
Format.PNG
 
Hope this will help. 🙂
 
 
 

View solution in original post

4 REPLIES 4
Thim
Resolver V
Resolver V

I am sure there are way smarter ways to do it than this, but this is the way I would go. 🙂

 

Because I am having issues haven some lines that are calculated, and some lines that are not, i find it easier to calculate each line. This helps make it look more like the result you want.

 

I would make 4 meassures like this.

 

Earned Premium = CALCULATE(SUM('Table'[Amount]);
FILTER('Table';'Table'[Item]="Earned Premium")
)
 
Incurred Losses = CALCULATE(SUM('Table'[Amount]);
FILTER('Table';'Table'[Item]="Incurred Losses")
)
 
Technical Result = [Earned Premium] - [Incurred Losses]
 
Loss Ratio = [Incurred Losses] / [Earned Premium]
 
At the Tab called Modeling, you can change the format for each meassure you have made, so some can be in USD, and others in %.
 
The finally select the Matrix, and set Country under Columns, and alle 4 meassure under value, then click the pencel, and under values, check "Show on rows" as on.
 
Format.PNG
 
Hope this will help. 🙂
 
 
 

Thanks, Thim. Appreciate it!

Greg_Deckler
Community Champion
Community Champion

Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490.

 

Is the image a image of your underlying data or is it summarized data?



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Edit my message with raw data added.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors