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
JayKarim
Frequent Visitor

DAX Calculation - % by dividing 2 columns. Please HELP!

Hello Power BI Community, 

 

I'm trying to work out a % calulation based on apply to conditions to 2 columns e.g.

 

Field type: Number %.   A % of the total number of claims which are marked as No in 'Review Column' against the total number of claims marked as 'open' in 'status' column

 

Please help me to calculate this as a % 

 

Many thanks in advance 🙂

 

Jay

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @JayKarim ,

 

Please try the measure.

 

Measure = 
DIVIDE (
    CALCULATE ( SUM ( 'Table'[claims] ), 'Table'[Review Column] = "No" ),
    CALCULATE ( SUM ( 'Table'[claims] ), 'Table'[status] = "open" )
)

vkkfmsft_0-1658386382478.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

3 REPLIES 3
v-kkf-msft
Community Support
Community Support

Hi @JayKarim ,

 

Please try the measure.

 

Measure = 
DIVIDE (
    CALCULATE ( SUM ( 'Table'[claims] ), 'Table'[Review Column] = "No" ),
    CALCULATE ( SUM ( 'Table'[claims] ), 'Table'[status] = "open" )
)

vkkfmsft_0-1658386382478.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Kishore_Kadhir
Resolver II
Resolver II

Hi @JayKarim 

 

Please provide some sample data and show us the expected result.

 

Regards,

Kishore

Hi Kishore, 

 

I don't think there will be any need for sample data.

 

i'm after a formula for the following:

 

% of the total number of claims which are marked as No in 'Review Column' against the total number of claims marked as 'open' in 'status' column

 

Thanks,

 

Jay 

 

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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
Top Kudoed Authors