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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello, I wonder if it's possible to calculate percentage change over sequential numbered instalments, which are not dated? The idea is that customers sign up to an open-ended plan and might cancel at any point. I want to compare the number of customers who make their first payment to the number who make their second, third etc.
Here's a mock-up from Excel:
i.e. only 58% of customers make 6 or more payments, and 95% of those who make 5 payments will go on to make a sixth payment, etc.
Thanks in advance!
Solved! Go to Solution.
If you store the table as 2 columns . (instalment and makeP)
Then add 2 calculated columns as follows:
ColumnA = VAR _prevP = LOOKUPVALUE(TableQ[makeP], TableQ[instalment], TableQ[instalment] - 1)
RETURN
DIVIDE(TableQ[makeP] , _prevP) ColumnB = VAR _prevP = LOOKUPVALUE(TableQ[makeP], TableQ[instalment], 1)
RETURN
DIVIDE(TableQ[makeP] , _prevP)
Please post sample data next time (not a picture). It always helps.
Hi @Anonymous ,
Would you please show us some sample data of your raw data? Then we can help you more accurately.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
If you store the table as 2 columns . (instalment and makeP)
Then add 2 calculated columns as follows:
ColumnA = VAR _prevP = LOOKUPVALUE(TableQ[makeP], TableQ[instalment], TableQ[instalment] - 1)
RETURN
DIVIDE(TableQ[makeP] , _prevP) ColumnB = VAR _prevP = LOOKUPVALUE(TableQ[makeP], TableQ[instalment], 1)
RETURN
DIVIDE(TableQ[makeP] , _prevP)
Please post sample data next time (not a picture). It always helps.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!