Hi there,
I have a delete button for a 2 screen item. for some reason my Remove() function wont work! I have a button inside the gallery (CLAdminGal) with a Set(varRecord,ThisItem);Navigate(CLAdminUpdate) which leads to the page which has the variable in the form for viewing. I have a delete on this page with the function Remove(CLLocal,varRecord); ClearCollect(CLLocal,'Contraband Log (CL)'); Navigate(CLAdmin) and it is showing no errors, but is also not deleting the record.
I have also tried simply going with Remove(CLLocal,CLAdminGal.Selected) and a million other combos.
I've created a new collection from my list, made new variables, renamed the gallery... EVERYTHING and it just doesn't work.

Button in gallery OnSelect: Set(varRecord,ThisItem);Navigate(CLAdminUpdate)
Popup OnSelect button: Remove(CLLocal,varRecord); ClearCollect(CLLocal,'Contraband Log (CL)'); Navigate(CLAdmin)
and again, i tried linking directly to the gallery already too.