
Announcements
I am not a PowerApps expert, I know some things but not a lot. I have created a PowerApp for my work that when someone books a board slot it submit forms to the data source (SP list) and patches to another SP list and sends an email to confirm booking. When someone cancels their board slot I return all the data to blank and my title field returns to "Available" for someone else to book the slot on one SP list, that is the main data source that the SubmitForm is attached to. I would now like it to delete the row the data was patched to. I tried a remove statement but it seemed to add a record to my other data source. How can I delete the row on the 2nd data source?
Not sure what the identifying values are for the 2nd data source, but essentially you would use:
RemoveIf(secondSource, ID = someID) (or whatever criteria would identify the exact record to remove).
I hope this is helpful for you.