Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
I'm hoping you good folk can help as I feel like I've hit a wall.
I've created a calculated table with two columns 'Date' & 'Costs'. I'm trying to create a new column for the growth, from the previous row to the current row. In excel, it's an easy ([CURRENT]-[PREV])/[PREV].
I've tried the following, but neither work and I can't find anything on this at all:
Date | Costs | Growth |
2022-04 | £316,742.58 | 0.00% |
2022-05 | £339,554.79 | 7.20% |
2022-06 | £318,563.10 | -6.18% |
2022-07 | £328,800.01 | 3.21% |
2022-08 | £336,192.01 | 2.25% |
2022-09 | £335,042.44 | -0.34% |
2022-10 | £364,598.18 | 8.82% |
2022-11 | £347,276.07 | -4.75% |
2022-12 | £349,602.02 | 0.67% |
2023-01 | £353,896.81 | 1.23% |
2023-02 | £329,560.58 | -6.88% |
2023-03 | £326,710.33 | -0.86% |
Any help would be greatly appreciated.
Thank you in advance!
Solved! Go to Solution.
Hi @Nerf_Herder ,
According to your description, here are my steps you can follow as a solution.
(1) My test data is the same as yours.
(2) Click "transform data" to enter the power query editor, change the data type of the [Costs] column to "Decimal number" type, sort the date column in ascending order, and then add the index column.
(3)Click "Close and Apply" to go back to desktop and create a calculated column.
Column =
var _current='Table'[Costs]
var _prev=CALCULATE(SUM('Table'[Costs]),FILTER('Table','Table'[Index]=EARLIER('Table'[Index])-1))
return DIVIDE(_current-_prev,_prev,0)
(4) Then the result is as follows.
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
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.
Hi @Nerf_Herder ,
According to your description, here are my steps you can follow as a solution.
(1) My test data is the same as yours.
(2) Click "transform data" to enter the power query editor, change the data type of the [Costs] column to "Decimal number" type, sort the date column in ascending order, and then add the index column.
(3)Click "Close and Apply" to go back to desktop and create a calculated column.
Column =
var _current='Table'[Costs]
var _prev=CALCULATE(SUM('Table'[Costs]),FILTER('Table','Table'[Index]=EARLIER('Table'[Index])-1))
return DIVIDE(_current-_prev,_prev,0)
(4) Then the result is as follows.
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
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.