Hi,
I am struggling with a lookup field and multiple entries using collection operation - hope someone can support me.
At a sharepoint list there is a lookup field to select one or more group names. The related list contains group names and members. I use "collection operation" to get all group names for current item. Stored them as "Lookup Values, Comma Delimited" to have only names in this collection (at this time there is already a semicolon at the end). Example: "name1,name2;"
Afterwards I am using regular expression to split entries by "," and getting "name1;name2;;"
Problem seems to be that "query list" during a "For each" does not like ";;" so my result is just members of group name "name1".
Question: I guess removing the semicolon at the end would be the solution? Are there other ways to solve this problem? If I use string in collection then I get "14;#name1;#15;#name2;" back.
Thanks for your support in advance