Can users see how many markers they have placed on the map in a day. As I have created an app for survey

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

0 1 183
  • UX
1 REPLY 1

MultiTech
Participant V

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:

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.

3X_d_5_d51363a862e7ab883241c312ac5d7f271579cdd3.gif

Top Labels in this Space