I'm currently bulding a report than includes a table with column group with the group on value for Month, so it would dinamically create the month column according to the range selected by my user.
What is needed is that, along every Valuación column we show a Crecimiento (growth) column. For this, the [SUM(Diferencia)] of the previous month needs to be considered the 100% for the rule of the three to be applied
Currently, this is the formula i've placed on the field
=IIF(
Fields!Mes.Value = 1,
0,
(Sum(Fields!Diferencia.Value)/
ReportItems!Diferencia.Value)
)
(Mes = Month)
But, as you might know, it always returns a 100% because Sum(Fields!Diferencia.Value) = ReportItems!Diferencia.Value) (who would've guessed)
I've tried with Fields!Diferencia.Value & Sum(Fields!Diferencia.Value, "Informacion") (the second one is what I obtain after searching Diferencia inside the Datasets category)
but still dont get how to reference the previous month Sum(Fields!Diferencia.Value)
any idea how is this possible?
thanks in advance guys
Edit 1: I'm adding an live preview image, to show you how the data is displayed during actual runtime