I have a gallery that I added a 'delete' icon to.
In the OnSelect property, I added code that I expected to delete "ThisItem" from a PARENT list, and also attempts to remove the related items in a CHILD list.
The Child list has a column called 'Ref ID' that identifies and links its items to their respective Parent item in the main list.
** The code below deletes the Parent item from its list as expected, but it isn't removing the items from the Child list.
RemoveIf(ChildList, 'Ref ID' = ThisItem.ID);
Remove(ParentList, ThisItem)
Any assistance is greatly appreciated.