Hi,
I am trying to display cumulative percentage of my amount field basis a date range column.
I would like to show something like this -
So far, I have tried creating a rank column to sort my date range and tried to do running sum basis the rank column.
runningSum(amount, rank asc) but this is not giving me correct value. Since this is a calculative field, I am not able to do percent of total to get percentage.
runningSum()/sumover() did not work for me.