Parameter | Data Type | Description |
|---|---|---|
1 | Any | The repeated expression. |
2 | Whole Number* | The full repeat context expressed as a list of repeat counters. |
Expression | Result |
|---|---|
CompanyName ## List( 2 ) | "Beta Construction" |
Parameter | Data Type | Description |
|---|---|---|
1 | Any | The repeated expression. |
2 | Text* | The full repeat context expressed as a list of repeat counters. |
Expression | Result |
|---|---|
CompanyName ## List( "2" ) | "Beta Construction" |
DirectorName ## List( "2", "1" ) | "Ted" |
Parameter | Data Type | Description |
|---|---|---|
1 | Any | The repeated expression. |
2 | Whole Number** | The full repeat context expressed as a list of repeat counters. |
Expression | Result |
|---|---|
CompanyName ## List( List( 2 ), List( 1 ) ) | List( "Beta Construction", "Alpha Holdings" ) |
DirectorName ## List( List( 2, 1 ), List( 2, 2 ) ) | List( "Ted", "Anthony" ) |
Parameter | Data Type | Description |
|---|---|---|
1 | Any | The repeated expression. |
2 | Text** | The full repeat context expressed as a list of repeat counters. |
Expression | Result |
|---|---|
CompanyName ## List( List( "2" ), List( "1" ) ) | List( "Beta Construction", "Alpha Holdings" ) |
DirectorName ## List( List( "2", "1" ), List( "2", "2" ), List( "3", "1" ) ) | List( "Ted", "Anthony", "Eva" ) |