If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.
Hi - I have data as below
Month | Sales |
Jan | 100 |
feb | 200 |
March | 300 |
In the chart I wan to show increase on sales Month over Month.
So bar chart by Month and Jan will show 100, Feb will show 300 and March will show 600.
I TRIED ABOVE(SUM(SALES)) but this is not working.
Thank you for the help.
Try this
RangeSum(Above(sum(Sales), 0, RowNo()))
Try this
RangeSum(Above(sum(Sales), 0, RowNo()))
You are awesome.Thank you.