Reputation: 843
I have a field [values] where a range of values (say A - E) can be added. Viewed across a number of records we get something like
Record 1 [values] A
Record 2 [values]
Record 3 [values] A
Record 4 [values] C
Record 5 [values] B
Is there a way of producing a summary field of [values] where the above would return :
A
B
C
my thanks in advance
Upvotes: 1
Views: 340
Reputation: 1739
You may be able to do what you want with a Value List:
ValueListItems ( Get(FileName) ; "Values" )
You will likely want to turn on "Do Not Store Calculation Results" for the Listed Values field.
Upvotes: 1