I have two apps. In one app i have an unfiltered gallery on table (powerapps entity) kenneluser.
In another app I populate the table with identical records using patch, let us say 8 records
In the first app I can see the records appearing.
In that app I have a button to clear the table
RemoveIf(KennelUser;true)
All records disappear from the gallery.
In the second app I click respectively
-a button that puts an empty string in a label
-a button that puts the number of records that match a filter in the same label
Set(NumFinds;CountRows(Filter(KennelUser;Email=Trim(User().Email))))
;;
Set(LabelText;Text(NumFinds))
The label says "8".
If I leave averything alone and look again after a day the records are not found anymore, it says "0"
Is this something I am supposed to live with or am I doing something wrong/incomplete. Do I have to submit something after clearing the table or something like that?