The 1C:Enterprise developers forum
HelloExample of results after generate report action:Row 1: 100 | 20 | calculate value = 100 - 20 = 80Row 2: calculate value form above (80) | 60 | 80 - 60 = 20Row 3: calculate value form above (20) | 10 | 20 - 10 = 10etc...Is any way to achive a result such above dynamically calculations based on value from previous row on report?Thanks in advanceChristoph
Dear kris,To implement such dynamic calculation in your report, you can build it via the Data Composition System and use a construction like this in the report:
EvalExpression("SUM(<FieldName>)" , , , "First", "Current")
Hello,Vladimir, it works perfectly. Thank you.Best regards,Kris