So I'm super stuck. I have a gallery that contains checkboxes and is connected to SP list A. When a box is checked, I add the checked item to a collection:
If(
!IsBlank(
Filter(
'Project Time System',
Project = ThisItem.Project)), Collect(submitProjects,ThisItem), RemoveIf(checkedProjects,IsBlank(Checkbox3)))
When the user presses a submit button - the information from the collection is patched (new record created) into another SP list SP List B using:
ForAll(
Collection,
Patch(
SPList,
Defaults(SPList),
{
Columns and values....
}
)
)
Everything works great, however - I'm stuck on once a record is added to SP List B, I would like to remove it from SP List A which will remove it from the gallery AND I want to remove it from the collection. This should be able to submit all checked items from the gallery at the same time. Any help is really appreciated - like I said - suuuuuppperrrr stuck =o)