Hello again,
I'm trying to calculate this formula that I had on Excel (see picture below). The first value of the column "EBIT kummuliert" should be the value of cell E2 to have an initial value for the further calculation. The next coming values of the column "EBIT kummuliert" should be calculated with the previous value of the same column + the value of the same row but different column and so on. I'm already trying hours on this. Should I do that with an aggregate or assign this?
Thank a lot in advance. :)
Cheers,
Nader
Hi Nader,
SQL (and hence Aggregates) return data per row, and all rows are independent of each other (hence you can sort results without the results changing). So there's no way to do what you want with any type of database query. So your only options is to calculate the running total after you've queried the data.
Try to use the below components. Documentation available.
https://www.outsystems.com/forge/component-overview/1044/excel-package
https://www.outsystems.com/forge/component-overview/355/advanced-excel
Thanks, Aadhavan S