This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi everyone
I'm trying to work out the percentage increase or decrease based on year on year values within a table.
I'm using this DAX Measure to calculate the value of payments from each contact:
I'd like to achieve a DAX Measure (preferably) that shows the increase / decrease between the various years e.g. that 1983/1984 is a 2000% increased on 1982/1983 and that 1984/1985 is a 99% decreasd on 1983/1984 etc.
Could anyone please tell me the best way to achieve this?
Many thanks
Jon
Solved! Go to Solution.
Hi @jonclay ,
Thanks divyed for the quick reply. I have some other thoughts to add:
(1) We can create measures.
rank =
RANKX (
SUMMARIZE ( ALLSELECTED ( 'Fin_Yr' ), [Fiscal Year], "nett", [Paid (Nett)] ),
[Fiscal Year],
MAX ( 'Fin_Yr'[Fiscal Year] )
)
Change = var _rank=[rank]+1
var _pre= CALCULATE([Paid (Nett)],FILTER(ALLSELECTED('values'),[rank]=_rank))
var _current=[Paid (Nett)]
RETURN DIVIDE(_current-_pre,_pre)
(2) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you, everyone.
These all work in different ways, so I have a great choice 🙂
Hi @jonclay ,
Thanks divyed for the quick reply. I have some other thoughts to add:
(1) We can create measures.
rank =
RANKX (
SUMMARIZE ( ALLSELECTED ( 'Fin_Yr' ), [Fiscal Year], "nett", [Paid (Nett)] ),
[Fiscal Year],
MAX ( 'Fin_Yr'[Fiscal Year] )
)
Change = var _rank=[rank]+1
var _pre= CALCULATE([Paid (Nett)],FILTER(ALLSELECTED('values'),[rank]=_rank))
var _current=[Paid (Nett)]
RETURN DIVIDE(_current-_pre,_pre)
(2) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello @jonclay ,
You can try below dax :
I hope this helps. Did I answer your query ? Mark this as solution if this has solved your issue.
Cheers
Hi there @divyed
Many thanks for your reply.
The Fiscal Year field is a calculated column on the Fin_Yr table, so I can't seem to get your code to work. I'm using the following code to create the column:
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 5 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 14 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |