When clicked on complete, it should remove the record from the data source. How do I do that?

When clicked on complete, it should remove the record from the data source. How do I do that?
Hi @Philbert9879,
You can achieve this with the Remove() function. The OnSelect of the button would have the following code:
//Change DataSource to the actual collection or datasource/list name
Remove(DataSource, ThisItem)
Should this not work you could also try:
//Change DataSource to the actual collection or datasource/list name
//Change ID to a unique field within your datasource
Remove(DataSource, LookUp(DataSource, ID = ThisItem.ID))
If this solves your question, would you be so kind as to accept it as a solution.
Thanks!