I am trying to Group a relation and then create a list of values from a field
in the relation.
input:
(100001),(500 W 1st), (suite 500), (albany), (new york)
(100002),(500 W 1st), (suite 500), (albany), (new york)
desired output would be something like:
((500 W 1st),(suite 500), (albany),(new york)), {(100001),(100002)}
I want to create a list of ids (100001, 100002) for each unique address.
I cannot seem to find any examples on the Web and cannot seem to correctly use
data fu’s AppendToBag.
Thanks,
Steven