I am setting a variable on the next arrow of a gallery.
Set(_selectedItem, Gallery.Selected)
When I try to use this variable to refer to a record for deletion, the Remove() function will not accept my variable.
Remove(Entity, _selectedItem)
However if I change my Set() statement to this
Set(_selectedItem, ThisItem)
it does work. Either one appears to work for RemoveIf, and for every other function I have tried. What exactly is the difference between ThisItem and Gallery.Selected that specifically the Remove function would only work with one?