|
POST
|
Hi! The results of reverse geocoding can be controlled through a custom locator or locator view. Check this blog first to understand how to create locator views: https://www.esri.com/arcgis-blog/products/analytics/analytics/customize-your-geocoding-experience-with-locator-views/ Once you have a locator view that only returns physical addresses, use either Survey123 web designer or Connect to have your map question or calculation use the locator view you created and shared.
... View more
09-07-2023
09:23 AM
|
1
|
1
|
1422
|
|
POST
|
If you want to construct a URL to open a web form, check this: https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-web-form-url/ba-p/894722 If you want your URL to open a form in the mobile app, check this: https://community.esri.com/t5/arcgis-survey123-blog/understanding-survey123-s-custom-url-scheme/bc-p/900303
... View more
09-06-2023
10:47 AM
|
0
|
1
|
1287
|
|
POST
|
Hi. I do not think we will find a straight forward and simple answer to this. The data you can get through the pulldata() function depends on the output you get from the locator. If using the World Geocoding Service, I do not see any output that breaks down the address into street, street type, etc. The full doc is here. I found this discussion which is somewhat related to your problem: https://community.esri.com/t5/arcgis-pro-questions/help-leveraging-unit-and-building-address-elements/td-p/1101833
... View more
09-06-2023
10:44 AM
|
0
|
2
|
1614
|
|
POST
|
Support is limited: You can copy-paste the choices using the Batch Edit option as shown in the screenshot below. If you want your list to change as the source changes, you will need to use an ArcGIS layer. I wonder if ArcGIS Pipelines could play a role here heping you keep sharepoint list content synched with an ArcGIS layer.
... View more
09-06-2023
10:34 AM
|
0
|
0
|
910
|
|
POST
|
Hi @MaholyRavaloharimanitra1 I am not quite sure the choice filter is the reason why you see four duplicated columns in the website. A complete diagnosis will be easier if you share your XLS file as an attachment. Additionally, the choice filter expression in your XLSForm appears to be incorrect. Check this for details: https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-choice-filters/ba-p/894046 It seems to me like the expression should look like region=${Faritra} or selected(${Faritra},region)
... View more
09-05-2023
10:12 AM
|
1
|
2
|
1979
|
|
POST
|
@alyssajhnsn I am sorry but you will need to be way more specific for people to be able to help you. I suggest you try to reproduce the problem using a simple survey and report and then share the steps that need to be followed to reproduce the problem. By doing so, you may find a solution yourself. Worst case scenario, someone here may be able to help you once you provide more details.
... View more
09-01-2023
12:45 PM
|
0
|
0
|
861
|
|
POST
|
I think the problem is that the expression if lrepeatphoto always returns true, even if you have no rows within the repeat. I suggest you add a hidden integer question outside the repeat to count the number of photos in the repeat: count({$imageQuestion) should do. Then, in your report, you will use that integer value in your expression if photoCount>0.
... View more
09-01-2023
12:05 PM
|
1
|
1
|
1065
|
|
POST
|
From what you describe, I suspect that your survey is not really using your ArcGIS Pro layer. In short: If you created your survey using the Survey123 web designer, then your survey is definitively not using your ArcGIS Pro layer. All surveys created in the web designer use layers that Survey123 creates when you publish the survey (in your hosted data store). You can definitively bring your survey layer into ArcGIS Pro, but you cannot create a survey from an existing layer you created in Pro. If you created your survey using Survey123 Connect, there is a chance that your survey is using your ArcGIS Pro layer, but only if you followed very specific steps. Typically, when you create a new survey in Survey123 Connect, a new layer will be created for your survey. However, it is possible to choose the option to create a survey from an existing Feature Service, as shown in the image below. I am not sure if you chose that option originally. When you create a survey from an existing layer, that layer could come from either your hosted data store or from a multi-user geodatabase. It is also possible to manually edit the submission_url setting in your form to have a survey target an existing layer. The way I like to do things is as follows: If for whatever reason you must use an existing layer. Go with the Connect-create a survey from feature service option My preferred option is: Go into Survey123 Connect and create a survey from scratch. Publish Export your survey layer into a file geodatabase Import your file geodatabse into your multi-user geodatabase Load data as needed Rewire the submission url of your survey to target the multi-user geodatabase layer Some additional info at: https://community.esri.com/t5/arcgis-survey123-blog/working-with-existing-feature-services-in-arcgis/ba-p/894290
... View more
09-01-2023
12:00 PM
|
1
|
1
|
2646
|
|
IDEA
|
08-28-2023
10:18 AM
|
0
|
0
|
4635
|
|
IDEA
|
08-28-2023
08:50 AM
|
0
|
0
|
3223
|
|
POST
|
@AnninaRupe1 Getting the centroid of a polygon with an XLSForm expression is not possible at the moment. You may want to vote up (if not already) this idea: https://community.esri.com/t5/arcgis-survey123-ideas/create-centroid-point-at-the-creation-of-geoshape/idi-p/939793
... View more
08-28-2023
08:38 AM
|
0
|
0
|
2151
|
|
BLOG
|
@EgleAdmin Fixed. Thanks for pointing this out. I guess I deleted the original survey some time ago!
... View more
08-25-2023
02:15 PM
|
1
|
0
|
11396
|
|
POST
|
The problem is caused by the calculations highlighted in the next screenshot: You are creating an end-less cycle: Calculations trigger when the value of the question changes... The calculation says: If you have a choice selected, change the value to 0 or 1 Now that you have changed the value, the calculation triggers again... Another issue is in this calculation: if(${num_selected} = 1, "proposed",if(${num_selected} = 2, "callback", "unknown")) The num_selected question is a note question type, which is by default a text value, but you are comparing against a number: ${num_selected} = 1 It will be better if you do this: if(${num_selected} = "1", "proposed",if(${num_selected} = "2", "callback", "unknown")) Other than that, your form works as I think you would expect.
... View more
08-25-2023
01:53 PM
|
0
|
0
|
963
|
|
BLOG
|
@Victor_SebastianPerez_Castella The error is likely triggered because your survey layer does not allow queries. Check layer sharing and layer query permissions.
... View more
08-25-2023
08:54 AM
|
2
|
0
|
2484
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-03-2021 09:03 AM | |
| 1 | 04-01-2022 12:48 PM | |
| 1 | 03-22-2022 08:44 AM | |
| 1 | 08-26-2021 02:43 PM | |
| 1 | 10-30-2019 10:15 PM |
| Online Status |
Offline
|
| Date Last Visited |
08-25-2025
09:21 AM
|