UiPath Forms: Dynamics number of rows in table/elements in container based on Numeric input from user in another field in the survey

Hey guys

Is it possible to create a custom logic for N number of fields to appear based on a user’s input number?

Example1:

Number of indsutrial units:
1 (inserted by user)

Table (created based on user input - 1)
Name: Location: Area:
… … …
(1 row)

Example2:

Number of indsutrial units:
3 (inserted by user)

Table (created based on user input - 3)
Name: Location: Area:
… … …
… … …
… … …
(3 rows)

Thanks for help

if I get it right you just need to loop N times - each iteration adds a row to the table :nerd_face:

Yeah, but how to do it in terms of UiPath Forms is the tricky part - you get the number in one field and you need to create a x-rowed table in another of the same Forms Designer instance

I know there are conditional options such as this:
image

But it is a simple if variable=value.
What I would need is how to implement logic inside of the UiPath Forms Designer to tell the bot create a table with rows=value (which value is entered in a parallel field in runtime).