I want to send notification to my users according to their work.
Below work hard example
Rahul 48
Rakesh 87
Raju 90
I wish that the one who has done the most work in the current date should be given a notification.
I want to send notification to my users according to their work.
Below work hard example
Rahul 48
Rakesh 87
Raju 90
I wish that the one who has done the most work in the current date should be given a notification.
Create a slice first and create an automation to send a notification
IN(
[_THISROW],
TOP(
ORDERBY(
SELECT(
Table[Key],
[Date] = TODAY()
),
[Score]
),
1
)
)