Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Take the example below, how do i compute the percentage change of client loan amount for each client ID from one cycle of loan to the next cycle.
| Client ID | Cycle of loan | Loan Amount | 
| X | 1 | 200 | 
| X | 2 | 450 | 
| R | 1 | 20,000 | 
| R | 2 | 4,500 | 
| R | 3 | 34,000 | 
Solved! Go to Solution.
Hi, @hosea_chumba
You can try the following methods.
Measure:
Previous Amount = 
VAR _N1 = MAXX (FILTER (ALL ( 'Table' ),
            [Cycle of loan] < SELECTEDVALUE ( 'Table'[Cycle of loan] )
                && [Client ID] = SELECTEDVALUE ( 'Table'[Client ID] )
        ),[Cycle of loan])
Var _N2=CALCULATE (SUM ( 'Table'[Loan Amount] ),
        FILTER (ALL ( 'Table' ),
            [Client ID] = SELECTEDVALUE ( 'Table'[Client ID] )
                && [Cycle of loan] = _N1))
Return
IF(_N2=BLANK(),0,_N2)Measure = 
IF ([Previous Amount] = BLANK (),BLANK (),
    DIVIDE ([Previous Amount] - SUM ( 'Table'[Loan Amount] ),SUM ( 'Table'[Loan Amount] )))
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @hosea_chumba
You can try the following methods.
Measure:
Previous Amount = 
VAR _N1 = MAXX (FILTER (ALL ( 'Table' ),
            [Cycle of loan] < SELECTEDVALUE ( 'Table'[Cycle of loan] )
                && [Client ID] = SELECTEDVALUE ( 'Table'[Client ID] )
        ),[Cycle of loan])
Var _N2=CALCULATE (SUM ( 'Table'[Loan Amount] ),
        FILTER (ALL ( 'Table' ),
            [Client ID] = SELECTEDVALUE ( 'Table'[Client ID] )
                && [Cycle of loan] = _N1))
Return
IF(_N2=BLANK(),0,_N2)Measure = 
IF ([Previous Amount] = BLANK (),BLANK (),
    DIVIDE ([Previous Amount] - SUM ( 'Table'[Loan Amount] ),SUM ( 'Table'[Loan Amount] )))
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
            | User | Count | 
|---|---|
| 8 | |
| 5 | |
| 5 | |
| 4 | |
| 3 | 
| User | Count | 
|---|---|
| 24 | |
| 11 | |
| 10 | |
| 9 | |
| 8 |