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

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

Reply
Anonymous
Not applicable

Dax help

Hello World,
cal.PNGcalcuu.PNG
I have two pics here. One in excel (blue color) and anothetr in Power Bi.  I have created a matrix in Power Bi with age category and transactions. 

Now I want to calculate the sucess rate . The formula that I used in Excel is : Sum(Total Transactions/Total Past Dues 1-30 Days)*100%) . Same with the remaining 3 . How do i do same in power bi?
Please help

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

I think you can try code as below to create a measure.

Payment success Rate =
VAR _Total =
    SUMX ( ALLSELECTED ( 'Table' ), 'Table'[Transactions] )
VAR _Transactions =
    CALCULATE ( SUM ( 'Table'[Transactions] ) )
RETURN
    DIVIDE ( _Transactions, _Total )

My Sample:

RicoZhou_0-1670317001080.png

Result is as below.

RicoZhou_1-1670317014931.png


Best Regards,
Rico Zhou

 

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

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

I think you can try code as below to create a measure.

Payment success Rate =
VAR _Total =
    SUMX ( ALLSELECTED ( 'Table' ), 'Table'[Transactions] )
VAR _Transactions =
    CALCULATE ( SUM ( 'Table'[Transactions] ) )
RETURN
    DIVIDE ( _Transactions, _Total )

My Sample:

RicoZhou_0-1670317001080.png

Result is as below.

RicoZhou_1-1670317014931.png


Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

A_Ben_Chaoued
New Member

var Total_transaction = sum(Transaction) return

rate = ( Transaction / Total_transaction ) * 100

return rate

 

I hope that help you, good luck 🙂 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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.