Hi everyone,
I've been trying variations of this formula all morning, but haven't gotten where I needed to.
I have two SQL tables connected to two galleries, one gallery on one screen, and the other on a second screen.
When I click on the delete button currently, it deletes only the selected item from that gallery. Normal. And this it the formula:
Remove(SQLTable1, WatchScreenGall.Selected);
However, I've tried using if conditions, and RemoveIf, such as the following formulas, but nothing is coming of it. Which makes me wonder if two one records from two different tables can be deleted with on button?
Remove(SQLTable1, WatchScreenGall.Selected);
RemoveIf(SQLTable2, Subtitle2.Text = WatchScreenGall.Selected.Subtitle1)
Any thoughts?
Thanks in advance
W