I have a map view where users drag the marker and fill the form. My question is that ,is there any way through which users can get to know and see how many markers they have placed in a day on the application
You’ll have to create a slice to pull out the markers made by the individual user and that match today()
First: it might help to implement something like this in your app:
[Current_User (Slice) - How to conform your app around WHO is using the app](https://community.appsheet.com/t/current-user-slice-how-to-conform-your-app-around-who-is-using-the-app/35639) Tips & Tricks ?
One of the core basic functions, included in just about EVERY app I make, is the ability for the app to know WHO is using the app. If the app knows who’s using it, then I can easily control many different aspects of the app: Add/edit/delete permissions How data should be filtered What views are shown What buttons, or Actions, are visible Which workflows should fire off Which columns should be shown or editable etc. Requirements To accomplish this functionality in your app, you need the follo…
Then the slice formula you’d use (to limit the records) would be something like the following:
AND(
[Record_Creator_User] = INDEX(Current_User[UserID], 1),
TODAY() = [Record_Creation_Date]
)
Then change your map view from the original table to this slice - and now you’re seeing a subset of your data.
![]()