I'm using the Generate Rows tool to try and figure out when I've reached capacity of something. The value grows predictably, and so I use the Generate Rows tool to create one row for each growth step.
Is there a way to easily generate the row that breaks your condition. For example, if I set my condition to be:
[Count] < 50000
and my increment step to be:
[Count]*2
If I had started at 1000, then I'll jump from 32000 to 64000. I would like to keep this final row,
is it possible to do so using the Generate Rows tool similar to how I have it set up, or would I have to adjust my condition to be at that new level? Currently, I've just put a conditional statement in the loop expression, but this raises a warning on the last iteration, which I'd like to avoid.
Thanks in advance!