Getting stuck on solving this dashboard output in creating a cumulative sum over each year. In this dataset, when I return GroupBy(fs, 'dc', {name: "Total Meters", expression: "total_gis_meters", statistic: "SUM"}), I get the following:
dc Total Meters ROW__ID
| 2020 | 211211 | 1 |
| 2021 | 2811 | 68005 |
| 2022 | 3123 | 7520 |
| 2023 | 3405 | 49435 |
| 2024 | 3346 | 259655 |
What I want to do now is creating a running total for each year. I assume I need a loop, but nothing I've tried is working. It shouldn't be this difficult, I wouldn't think.
Thank you for any suggestions!