Is it possible to st up an alert in survey123, for instance, i need to back to the same site after 3 weeks and survey123 reminds me of the day I need to be there.
Solved! Go to Solution.
Thank you so much looks very interesting will try
Probably not using "off the shelf" tools, but you could build a system like this using other tools.
A simple approach could be to have a dashboard that shows you sites based on their last visit date, and highlights those approaching the 3 week mark.
To get actual "alerts" or "notifications" of some kind, you'll need to utilize something like webhooks or scripting. Are you envisioning an alert via email? On the device itself?
I use a trick for this type of task.
Manual QC option: Each of these calculations pulled the text and the due date of the task from the child (if you only see the date, then no task is needed). Then you can assign an inspector when the time arrives.
concat(${NOV_StatusNR}, " ", format-date(now(),'%Y%m%d'))
Or you can use this formula to calculate out a number of dates - Mine is a variable, but you can hard code a date instead of this ${DaysToComply}.
now() + ${DaysToComply}*24*60*60*1000
Have a spatial day!
Thank you so much looks very interesting will try