I want to calculate cumulative sum for column ‘Net Weight’ by Year . Below picture is result i want to have.

Column definition:
- ‘SO Created Year’ = ROUND_YEAR("VBAK"."ERDAT")
- ‘Created Month’ = ROUND_MONTH("VBAK"."ERDAT")
- ‘Net Weight’ = KPI(“so_netweight”)

- Cumulative Sum=
if I use formula : RUNNING_SUM(kpi("so_netweight"),order by("vbak"."so_creatd_year"), partition by("vbak"."created_month_so_")) , i got below error.

can anyone help ?