How do you get numerical data to incrementally increase

How do I get a numerical data eg 1000 to increase by 100 every run cycle? Don’t want to go through excel or a data table ideally. Preferably would like this to be part of a variable.

Thanks

Like this:

image

Hi @rweaver1
Try this solution

@rweaver1

Welcome to the community

if it is in same run then can use assign and incrment by adding the number eg: num = num +100

if it is for different runs then use assets increment the value and use set asset and set the value to asset so that in next run the get asset will get the incremented value

cheers

Thank you for this, but how do I keep getting it to increment. So on the next run it was add another increment to the previous version. Thanks

You need a loop function block (Repeat, For Each, While, Do While) that encompasses your iteration.

@rweaver1

as mentioned above you need to use assets and save the data there using get and set asset activities

cheers

Hello @rweaver1

You could make a simple process that reads and writes the number to a Text File.
Then simply increment by 100 on each run.

image
image
image

Increment number.xaml (11.2 KB)

Regards
Soren