
Contributor III
2023-12-12
11:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
filling in spaces and cumulative calculation
hi
I hope you can help me, I need to create a customer index based on the increases
where the index is never zero, but I copy the last value, if it has not increased, if it has increased I need to calculate the index by the increase
451 Views
1 Reply

.png)
Former Employee
2023-12-20
06:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you want to do the accumulation in the script and the data is ordered by client and date, you can try
Load
If(Client=Peek(Client),RangeSum(Peek(Index),Increase), 100) as Index,
*
From Data;
If you want to do the accumulation in a chart, you can try method 2 on https://community.qlik.com/t5/Design/Accumulations/ba-p/1466581.
