I have a table which has a created
date column and a Value
column
I'm trying to do the sum of those values when the created date is inferior to each value that created date will give me.
For example
If
01.05.2022 I have as a value 25
02.05.2022 I have as a value 26
03.05.2022 I have as a value 30
I want to get
01.05.2022 --> 25
02.05.2022--> 51 (25+26)
03.05.2022 --> 81 (25+26+30)
If anybody can help me with which function I should use that would be super helpful!!
Thanks in advance