In my canvas app, I have three tables. For simplicity call them actor (Primary text column:ActorName) , movieactor (Primary column: ID) , and movie (Primary text column; MovieName). I have a table showing info about the movie, and the actors having played in them.
I have a delete button, so the user can delete the movie they no longer are interested in. So far so good (
Remove(Movie, tbl_Movie.Selected))
, the problem starts when I first want to delete all related rows in the movieactor table that contains this movie. How can this be achieved by Power Apps formula?