

Creator
2017-12-01
02:48 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Field Value Array
Is there a way to put a list of Distinct field values into a variable array?
I am trying to create a nested For each next loops where the loops loop through each distinct field value.
2,029 Views
1 Solution
Accepted Solutions

MVP
2017-12-01
03:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be do this with FieldValue() and FieldValueCount() function
For i = 1 to FieldValueCount('FieldName')
LET vVar = $(vVar) & FieldValue('FieldName', $(i));
NEXT i
Something along these lines
1,736 Views
1 Reply

MVP
2017-12-01
03:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be do this with FieldValue() and FieldValueCount() function
For i = 1 to FieldValueCount('FieldName')
LET vVar = $(vVar) & FieldValue('FieldName', $(i));
NEXT i
Something along these lines
1,737 Views
