Each column corresponds to a month of a year. The first one is January 2000 and the last one is June 2019. I need to calculate the Y-1 evolution for each month and I don’t succeed even by using the math formula (multi columns) node. Do you think about a possible solution ? Last thing, the numbers correspond to the sum of all the rows for the same period.
I need to calculate the evolution for each month compared to the month of previous year. The table begins by January 2000 until June 2019. For example, in order to calculate evolution compared to Y-1 of January 2001, I need to do the following caluclation :
(Value of January 2001 - Value of January 2000) / Value of January 2000
And I need to do this caluclation for each month of each year
Oh. You mean Month to Month change if I’m correct. Well not sure there is a simple way to do it without coding. For example you can use Column Expressions node with multiple expressions like following:
(column(0) - column(12)) / column(12)
For each calculation you need one expression. Also I guess R, Python or Java are able to do this in some kind of a loop. Or maybe without loop. Don’t know