
Announcements
Hi,
I have an app where the users are out of reception all day only in the morning and night do they get internet reception,
If my users wish to delete an item from the gallery during the day so the item is removed when at night when they return can they do this?
or is this not possible?
i can edit and submit this way>?
i take it its something like if(connection.connected, Forall(List, renamecolumns("ID" "tempID", Lookup(List >??? im stuck but im unsure if it can be done
Hi @ShaneITAutomate ,
You would need to make a collection of the items you want to delete and then action them with something like this
ForAll(
colMyDeletes as aDel,
RemoveIf(
YourListName,
ID=aDel.ID
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.