So what I want to happen is during edit, I have a combo box that has multi select enabled.
For example this multi select has 2 person with the name Winter and Snow
now after I want to edit it I change it to Winter and Casper.
in the list I want to remove only Snow ideally and then add in Casper.
What I am thinking of is
ForAll(
colExistingParticipant as ExistingParticipant,
If(
Not(ExistingParticipant.Participant.DisplayName in ForAll(ReviewParticipants_Edit.SelectedItems, DisplayName)),
RemoveIf(
AttachmentParticipants,
cID = ExistingParticipant.cID && (LOGIC HERE?)
{
*how do I remove a single person in a column type???*
}
)
)
)


Report
All responses (
Answers (