Top entry User 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.

Sending Notifications from a Bot, Workflow Rule or Scheduled Report | AppSheet Help Center.

1 Like

Create a slice first and create an automation to send a notification

IN(
	[_THISROW],
	TOP(
		ORDERBY(
			SELECT(
				Table[Key],
				[Date] = TODAY()
			),
			[Score]
		),
		1
	)
)
1 Like