So I have this table with 3 columns called "Person1", "Person2" and "Person3" and when some user click on a button it patches their User().FullName into the "Person1" slot and so on until it is full. How can I notify users ( by showing a simple message on their screen for example ) when a row their name is in is deleted?
Hi @Anonymous ,
Do you want to notify users if current user's information is deleted?
I suggest you use the Notify function.
Try this formula:
If(!IsEmpty(Filter(
tablename,User().FullName in Person1||User().FullName in Person2||User().FullName in Person3)
),
Notify("Are you sure to delete your information?",NotificationType.Warning)
)
Here's a doc about Notify function for your reference:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-showerror
Best regards,
Community Support Team _ Phoebe Liu
@v-yutliu-msft
I'm not really sure what that does, but I want to notify the users on their phones when e.g. I delete the row with their names in there. So if Person1 = "a", Person2 = "b" and Person3 = "c", and I delete the this row, I want each one of them to receive a notification on their phones. If this helps, "a", "b" and "c" are each user's User().FullName, but from my point of view they are just strings.
User | Count |
---|---|
252 | |
107 | |
90 | |
51 | |
44 |