Expand my Community achievements bar.

SOLVED

Setting a repeating from a Numeric Field

Avatar

Level 4

I have a Row that I would like to repeat based on a Numeric Field. Can someone please assist me with this?

Thank you in advance

Parre

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi,

you can do so with a small script in the exit:Event of your numeric field.

Assuming your table is named "Table1" and has a repeatable row named "Row1" than the script will look like:

Table1._Row1.setInstances(this.rawValue);

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

Hi,

you can do so with a small script in the exit:Event of your numeric field.

Assuming your table is named "Table1" and has a repeatable row named "Row1" than the script will look like:

Table1._Row1.setInstances(this.rawValue);

Avatar

Level 4

Thank you very much. This worked wonderfully.

Parre