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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Milan14
Frequent Visitor

How to calculate the amount retained based on conditions

Hello everyone,

 

I would like to calculate the amount retained from date slicer, selected 1/7/2021 until 3/7/2021, only include those USERID who performed top-up in the same period. Also, I would like to show the amount retained = 0 for those users who performed payment more than the top-up amount.

 

Below shows the formula I used to calculate the amount retained:

Amount retained = Top-up amount – payment amount

 

Sample table:

Milan14_0-1630471145722.png

Expected outcome in table:

Milan14_1-1630471181101.png

Expected outcome in card:

Amount Retained

70

 

Thanks.

 

3 REPLIES 3
VahidDM
Super User
Super User

Hi @Milan14 

Try these 3 measures:

Amount Retained =
VAR _TP =
    CALCULATE ( MAX ( 'Table'[Amount] ), 'Table'[Transaction Type] = "TopUp" )
VAR _PY =
    CALCULATE ( MAX ( 'Table'[Amount] ), 'Table'[Transaction Type] = "Payment" )
VAR _Dif = _TP - _PY
RETURN
    IF ( _Dif < 0, 0, _Dif )

 

Payment Amount =
VAR _TP =
    CALCULATE ( MAX ( 'Table'[Amount] ), 'Table'[Transaction Type] = "TopUp" )
VAR _PY =
    CALCULATE ( MAX ( 'Table'[Amount] ), 'Table'[Transaction Type] = "Payment" )
RETURN
    IF ( _TP = 0, 0, _PY )

 

Top-Up Amount =
CALCULATE ( MAX ( 'Table'[Amount] ), 'Table'[Transaction Type] = "TopUp" )

 

Output:

VahidDM_1-1630654984328.png

 

 

 

 

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

Appreciate your Kudos VahidDM_0-1630654938946.png!!

amitchandak
Super User
Super User

@Milan14 , Create a measure like

 

measure =
var _1 = calculate(sum(Table[Amount]), filter(Table, Table[Transaction_type] ="TopUp"))
var _2 = calculate(sum(Table[Amount]), filter(Table, Table[Transaction_type] ="Payment"))
return
sumx(Values(Table[UserID]), if(_1>_2, _1 -_2, blank()))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi @amitchandak 

 

Thanks for your suggestion. I have tried out with the formula you provided, but It doesn't work out.

 

This is the outcome I get with the formula you provided:

Milan14_0-1630650146333.png

 

This is my expected outcome in table:

Milan14_1-1630650253647.png

 

Have any idea what kind of formula I can apply to solve this issue?

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.