Skip to main content
Question

I want to create a sequence of numbers starting from 1 but ending at a certain point which it will decide from attribute value coming from the SQL executor, suppose the value came out as 100, then I would want to create sequence of numbers upto 100.

  • July 1, 2021
  • 4 replies
  • 114 views

bhavyagandhi
Contributor
Forum|alt.badge.img+6
I want to create a sequence of numbers starting from 1 but ending at a certain point which it will decide from attribute value coming from the SQL executor, suppose the value came out as 100, then I would want to create sequence of numbers upto 100. How ?

4 replies

david_r
Celebrity
  • July 1, 2021

If you want a separate feature for each number of the sequence, then look at the Cloner.


bhavyagandhi
Contributor
Forum|alt.badge.img+6
  • Author
  • Contributor
  • July 2, 2021

If you want a separate feature for each number of the sequence, then look at the Cloner.

Thank you, can it be done via making a custom transformer using counters? I was trying out that way


david_r
Celebrity
  • July 2, 2021

Thank you, can it be done via making a custom transformer using counters? I was trying out that way

Will the Cloner not work for your use?


bhavyagandhi
Contributor
Forum|alt.badge.img+6
  • Author
  • Contributor
  • July 2, 2021

Thank you, can it be done via making a custom transformer using counters? I was trying out that way

worked, but was trying another method