When using survey123, I wish that users enter their name at the beginning of the form. At first, I wanted to automatically get this info from their AGOL account, but it seems that not all users will have an account, so they will have to enter this information manually.
So I created this user table, with the first name and last name columns. I can get this information in the survey123 form with the search() function.
This question is as a select_one type. If the user selects "other" (also included in the table where search() gets the info), then the user has to enter his or her name manually.
1st question: Is it possible to concat() values from different fields within search, so the form could show their first and last name or I need to create a new field with both their names before hand?
2nd question: How to automatically add new values added manually by user to the users tables so that search() would get this new information in the future? I know I can't create automatic field calculations on AGOL. My plan right now is run some local script every hour or so to check and update, but I'm sure there is a better option?!
Thank you.