|
POST
|
Hi Raina I tried to simulate what you experience. I captured one Event type record and one Garden type record but it looks like all the irrelevant fields are still null. Can you perhaps give me a specific test case where you see incorrect values in irrelevant fields?
... View more
10-20-2021
12:28 AM
|
0
|
3
|
2178
|
|
POST
|
Hi Nick You can have a look at working with existing data in Survey123 https://doc.arcgis.com/en/survey123/desktop/create-surveys/prepareforediting.htm You can create a new editing survey based on your existing base information survey by clicking New Survey in Connect, Then choose Feature service and choose the base information survey's service (you need to be logged into Connect to do this). Then you can set up your editing survey to edit the status and enable the Inbox to retrieve the existing base data for editing. Hope that helps.
... View more
10-18-2021
11:46 PM
|
2
|
2
|
6336
|
|
POST
|
Hi Personally I would do the following: 1) Create a new survey based on the Feature Layer provided 2) Publish the new survey at least once then remove the submission url - do this BEFORE you make changes to the survey 3) After publishing and removing the submission url, add the additional 16 fields into the survey by mapping existing fields and adding the new ones that isnt in the feature layer 4) Publish the survey again - it should ask if you want to add the new fields to the Feature Layer
... View more
10-18-2021
06:20 AM
|
1
|
0
|
1632
|
|
POST
|
Hi You have done everything correctly except that your CSV file has semi-colons (;) instead of commas (,) in. Replace the ; with , in your file and it will work.
... View more
10-15-2021
07:36 AM
|
1
|
2
|
2021
|
|
POST
|
Hi You should probably have a look at the Settings tab of your survey's Excel design file. The form_id should match the destination table / layer name. https://doc.arcgis.com/en/survey123/desktop/create-surveys/xlsformsettings.htm
... View more
10-15-2021
07:31 AM
|
2
|
0
|
2187
|
|
POST
|
Hi Adi To force the type to Integer you need change the bind::esri::fieldType value of the question to esriFieldTypeInteger By default most questions in Survey123 resolve to String types.
... View more
10-15-2021
04:11 AM
|
0
|
0
|
1211
|
|
POST
|
Hi Raina I made a survey similar to yours: When I publish and run this on the Survey123 App it works as expected. If I choose 'Yes' in the select_one then my "yes" questions are relevant. If I then fill in values for the "yes" questions and later change the select_one to "no" then those "yes" questions are cleared out as expected. I know they are cleared out by using a note field to view their contents: Capturing "yes" values: Changing my option to "No": Note field is empty. Also the data sent back to the feature layer seems to be as expected: Record 1 was done by just choosing the yes option and capturing the yes questions. Record 2 was done by choosing yes, filling the yes fields and then changing the answer to no and filling the no fields. As expected the relevant=false check nullified the data entered
... View more
10-14-2021
11:09 PM
|
0
|
1
|
2236
|
|
IDEA
|
Hi Survey123 Connect is much more versatile and powerful in terms of working with lists such as properties to visit. I do think Connect is the way to go 😉
... View more
10-14-2021
06:46 AM
|
0
|
0
|
1001
|
|
POST
|
Hi Marcus If possible - could you share your survey to make it easier to assist.
... View more
10-14-2021
06:12 AM
|
0
|
1
|
862
|
|
POST
|
EDIT: I enhance our code 🙂 function MissingFloorList(lower,upper,floors) { let arr = []; for (let i = lower; i <= upper; i++) { arr.push(i); } var all_uniq_floors = [...new Set(arr)]; var visited_floors = [...new Set(floors)]; return all_uniq_floors.filter(x => visited_floors.indexOf(x) === -1); } Now you can just call one function to retrieve the missing floors and show them in red: pulldata("@javascript", "functions.js", "MissingFloorList", ${floor_lower}, ${floor_upper},${floor_number}) Show it in a note field with HTML formatting: <div style="text-align:center; font-size:large; font-weight: bold; color:red"; >Missing floors: ${missingfloors}</div>
... View more
10-13-2021
11:04 PM
|
1
|
0
|
2035
|
|
POST
|
Hi Marie You could create a hidden field with a comma separated list of the code descriptions... I know its a work-around. Not sure if there is a setting to export the code descriptions though
... View more
10-13-2021
02:30 AM
|
1
|
0
|
1041
|
|
POST
|
Hi I accepted your challenge (in part) and came up with one possible solution: Hopefully your survey is not a public survey, then you can use JavaScript to achieve your requirement: I'm not sure if you will have a floor zero but in any case, your solution could be similar. Basically I made a list of all the floors visited and passed it to a JavaScript function to remove duplicates, sort the floors entered, and comma separate the list: pulldata("@javascript", "functions.js", "CapturedFloors", ${floor_number}) Where floor_number is the floor entered into your repeat... function CapturedFloors (floors) { var uniq_floors = [...new Set(floors)]; var sort_floors = uniq_floors.sort(); return sort_floors.join(","); } Next I used the floor numbers indicated to create a similar comma separated floor list: pulldata("@javascript", "functions.js", "FloorList", ${floor_lower}, ${floor_upper}) function CapturedFloors (floors) { var uniq_floors = [...new Set(floors)]; var sort_floors = uniq_floors.sort(); return sort_floors.join(","); } I would then compare the two lists with each other and they should be similar when a fieldworker has visited all the floors of the building: I hope this helps!
... View more
10-13-2021
01:56 AM
|
1
|
0
|
2057
|
|
POST
|
From What3Words website: Currently, what3words address isn’t recorded automatically when users collect data with the Field Maps mobile app. The only location recorded is the coordinates. So I guess not
... View more
10-11-2021
05:52 AM
|
0
|
0
|
942
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-17-2021 12:13 AM | |
| 1 | 09-10-2025 07:00 AM | |
| 1 | 08-26-2025 05:58 AM | |
| 1 | 08-17-2025 10:00 PM | |
| 1 | 08-15-2025 05:26 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-18-2025
02:24 AM
|