|
POST
|
Hi Dongliang Li From your screenshot, it looks like the URL is constructed correctly. The error you're seeing occurs when the globalID does not exist in your feature layer. Which module are you using in Integromat to send the email? When the recipient clicks on the link, what does the URL look like in the browser? It should look something like this: https://survey123.arcgis.com/share/a5025646ddf54b88b11b754cac402171?mode=edit&globalId=%7bE7E44987-E1F2-4F90-82BB-06C995E0702F%7d Or this: https://survey123.arcgis.com/share/a5025646ddf54b88b11b754cac402171?mode=edit&globalId={E7E44987-E1F2-4F90-82BB-06C995E0702F} Best, Jim
... View more
09-10-2020
08:58 PM
|
0
|
2
|
3549
|
|
POST
|
Hi Tom This is a known issue with read-only dateTime fields in the web app. Please log a bug through Esri Support if you'd like to track any progress on this issue. One workaround could be to show this information in the second survey in a note question. You could format the date and time using the format-date() function (see Formulas—ArcGIS Survey123 | Documentation for more info). For example: format-date(${datetime},'%m/%d/%Y %H:%M') You could then use the hide=field: URL parameter to hide the dateTime question. Hope this helps. Cheers, Jim
... View more
09-01-2020
05:10 PM
|
1
|
2
|
1855
|
|
POST
|
Hi Camille Thanks for providing your XLSForm. Looks like the issue is with the choice filter. In your survey, the choice filter is set as the value of the gesp_select question. The gesp_select question has a default value of 1, while all choices in your choice list have a value of "gesp" in the "gesp" column on the external_choices sheet, so the choice filter cannot get a match. Setting the default of the gesp_select question to "gesp" (without quotes) will do the trick. This will return all 4,753 choices in the Plants choice list, so you could consider using the choice filter to break the list down into sub-categories. Here is a handy blog that demonstrates the effective use of cascading selects (using tree species as an example!): https://community.esri.com/groups/survey123/blog/2015/10/22/cascading-selects-and-external-selects. There's also a Cascading Selects sample survey in Connect that demos this technique. And here's some info in the Survey123 documentation: Cascading and external selects—ArcGIS Survey123 | Documentation. Regarding using the code for autocomplete - autocomplete will search the text in the label only. One option would be to incorporate the code into the label for each choice, e.g. "Abdra brachycarpa (Abdbra)". Also noticed that for the herblist question the join function is using the repeat name (herb_list). You'll likely want to use the join() function on the herb_dom question, e.g. join(',',${herb_dom}), to concatenate all the answers to that question across the repeat. Best, Jim
... View more
08-30-2020
08:36 PM
|
0
|
0
|
1138
|
|
POST
|
Hi Susan Perhaps the following design work? In this case, the location field is checked against three possible values inside an OR group. For the condition to pass, the first field must be "non_compliant" AND the location field must be one of three possible values: Best, Jim
... View more
08-24-2020
06:15 PM
|
0
|
0
|
1806
|
|
POST
|
Hi Robert Thanks for raising this issue. The method for making samples available in Survey123 Connect was modified in version 3.10 and unfortunately there was an issue with the Spike sample item which meant it could not be accessed in version 3.9 or earlier. The issue is resolved and the Spike sample should now be available - please let me know if you have any further issues accessing it in Connect. Best, Jim
... View more
08-19-2020
06:58 PM
|
2
|
1
|
707
|
|
POST
|
Hi Nathan Apologies for the late reply. Changing the navbar colour is not possible with the web app API (although hiding it is). You can find out more about the API here: https://community.esri.com/groups/survey123/blog/2020/03/05/introducing-the-survey123-web-app-javascript-api Best, Jim
... View more
08-18-2020
09:32 PM
|
1
|
2
|
2011
|
|
POST
|
Hi Federico The logic you're using should work; just to double-check, is "20-1-23" the name of the choice on the choices sheet, or the label? For the calculation to work it must be referencing the name of the choice, not the label. Best, Jim
... View more
08-18-2020
04:58 PM
|
0
|
0
|
952
|
|
POST
|
Hi Jamie Thanks for flagging the issue with the template. As of 3.10 the multiline appearance is fully supported in the field app and web app, for both image and file questions. I've updated the Appearances tab in the Advanced and Standard templates accordingly. Regarding the issue you're seeing in the dashboard - I'll leave this one to my colleague Jody Zheng Liu, above! Best, Jim
... View more
08-18-2020
04:04 AM
|
0
|
3
|
7688
|
|
POST
|
Hi Marie-Joëlle Desgagné To check if a question has an answer (i.e. is not empty), use the following syntax referring to the field name only (without any operators): ${if email}Email address: ${email}${/} Please find more info here: Feature report templates—ArcGIS Survey123 | Documentation Best, Jim
... View more
08-17-2020
07:09 PM
|
3
|
0
|
5599
|
|
POST
|
Hi André, our apologies for the poor translation! If copying a survey from the Outbox is critical to your workflows, please submit an enhancement request to Esri Support so that the request is logged in our system and can be tracked. Any requests from other customers can be linked to your request so we can get an idea of demand for the feature. Thanks, Jim
... View more
08-17-2020
05:15 PM
|
1
|
0
|
374
|
|
POST
|
Thanks Christina, great to hear your template is working now! The start and end tags for the summary section should each be on their own dedicated line (as shown below) but shouldn't need an additional blank line between the tag and the content. Best, Jim $<$summary> Your summary section content goes here... $</>
... View more
08-12-2020
02:49 AM
|
0
|
0
|
1354
|
|
POST
|
Hi Amanda TerBeek Appreciate this post is going back a while - were you able to sort out the map scale in your feature reports? The syntax in your template works as expected for me and is consistent with the documented syntax. I tried using your template for one of my own surveys; when changing the scale value the map scale in the output report changed accordingly, e.g. for a geopoint question named "location": ${location|mapSettings:"":50000} Best, Jim
... View more
08-11-2020
08:15 PM
|
1
|
1
|
2741
|
|
POST
|
Hi Christina Just to double-check, it sounds like your managers' report uses a summary section, is that right? If so, this sounds like it could be related to the way a summary section is utilised in a report. A summary section can be placed either at the start or end of a report and is designed to print the contents between the $<$summary> and $</> tags only once. Could you please try placing the logos inside the summary tags and see if this resolves the issue? For more on adding a summary section, see Feature report queries—ArcGIS Survey123 | Documentation. Best, Jim
... View more
08-11-2020
07:31 PM
|
2
|
0
|
1354
|
|
POST
|
Hi Angelo Capriglione Thanks for sharing your report template. Would it be possible to share your XLSForm as well, so I can try to reproduce the error you're seeing? Thanks, Jim
... View more
08-11-2020
06:41 PM
|
0
|
0
|
792
|
|
POST
|
Hi Orrin Babcock Appreciate this query is going back a while - were you able to resolve your issue? Just to double-check, are you creating feature reports from the Survey123 website Data page, or printing from the form view panel on the right of the Data page? Note questions can be shown in a feature report in the same way as any other question type. That said, from the XLSForm you provided it looks like the information you're trying to add to the report is the same for every survey. In that case, you could just add the text to the feature report .docx template itself. Note questions and read-only text questions do not appear in the form view panel. Best, Jim
... View more
08-11-2020
06:16 PM
|
0
|
0
|
1399
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-25-2020 06:40 PM | |
| 1 | 08-11-2024 10:11 PM | |
| 1 | 08-04-2019 06:44 PM | |
| 1 | 01-08-2025 03:26 PM | |
| 1 | 06-29-2020 07:21 PM |
| Online Status |
Offline
|
| Date Last Visited |
a month ago
|