I have a gallery of items that can be selected with a checkbox. Each item has one to many people assigned to it. I store the selected items in a collection colMailItems. In a next step I want to mail the assigned items to the respective people, but I want to send one mail only. That means, if 2 or more items have the same people assigned to it, I want one mail to contain 2 or more links to the items.
I tried to use the
GroupBy()
function, but it seems to struggle with multi-select people columns:
GroupBy(colMailItems, AddColumns(colMailItems, "ResponsibilityTEXT", Concat(colMailItems.Responsibility,DisplayName, ", ")))

Report
All responses (
Answers (