Getting the contents of a repetition in a repeating field
To find the contents of a particular repetition in a repeating field, use the GetRepetition function or use brackets [ ] as array operators (see below).
Examples
ParcelBids is a field defined to repeat with ten values and contains the values 2500, 1200, and 1500.
ParcelBids[2]
returns 1200.
ParcelBids[5]
returns nothing.
Notes
- For information on repetitions used in variables, see Using variables.