1.2k questions
1.4k answers
361 comments
339 users
You can use the channel cache to store your count value untill you need it. Here is the code you can use. To save out the value use: channelCache.setValue('count', channelCache.getValue('count') + 1); Note: you could also replace the number 1 with an iteration variable such as 'i' if you are in the context of a for loop to increment the current count of the channel cache variable. Then when you are ready to use the value you can write it out with the following code. qie.info(channelCache.getValue('count'));