Hi,
I have a multi-select combo-box that saves into a column from a Sharepoint list record delimited by comma (This is for visitor management).
Possible entries for the column "Location" are e.g.
- Location 1,
- Location 1, Location 3, Location 5,
- Location 3, Location 6
On a different screen I would now like to have a combo-box with items = the distinct items present in the column "Location", i.e.
- Location 1,
- Location 3,
- Location 5,
- Location 6,
I tried DISTINCT, but that gets me the "original" entries as each entry is distinctly different, which is what I would expect.
I tried to work with Split and Concat but get into issues with Record vs Text vs Table. How can I take all te entries, split them up into their components and then run a distinct over them?
Any help is appreciated.