
So I have an excel file with 3 columns called "Person1", "Person2" and "Person3" and a lot of rows each one with an unique ID, let's say user "a" is "Person1", if I (not "a") delete a row where "a" is in, how can I make the app do something on that user's app (notify for example) if that happens?
Hi @Anonymous
You can use collection to collect the deleted ones.
Icon(Cancel).OnSelect=Remove(Table1,ThisItem);Collect(deleteones,{Row:ThisItem,Time:Now()})
(Table1 is the ExcelTable on my side)
Example:
If you want to send the deleted ones by email, you can reference this :
https://powerusers.microsoft.com/t5/General-Discussion/Email-a-collection/td-p/31517
https://powerusers.microsoft.com/t5/Using-PowerApps/Exporting-Gallery-from-PowerApps/td-p/79367
Best Regards.
Yumia