|
POST
|
Hi @DougBrowning As @JamesTedrick mentions here, making an integer field required means it cannot be blank (NaN). In your survey, would it be suitable to make the ThalwegDepthCM question required, conditional on the FlowPresent question being answered? For example, use string-length(${FlowPresent}) > 0 in the required column and then use your first constraint expression to enforce the 0 or > 0 value, i.e. if(${FlowPresent}="No",${ThalwegDepthCM} = 0,${ThalwegDepthCM} > 0) Cheers, Jim
... View more
11-26-2020
05:50 PM
|
0
|
1
|
4214
|
|
POST
|
Hi @NicholasLaMar Appreciate this post is going back a while. As you suggest, it looks like this might've been a transient error with the report engine - were you able to upload your report template in the end? Jim
... View more
11-26-2020
04:46 PM
|
0
|
0
|
919
|
|
POST
|
Hi @JulietK The issue you're seeing is likely due to rounding (one minute in decimal time is 0.00069444444444). The int() function converts a decimal to a whole number by discarding the decimal places (it doesn't apply any rounding). Try replacing the int() function with round(), for example: round((decimal-date-time(${endtime}) - decimal-date-time(${starttime})) *24 *60,0) There's more on dates and times in Survey123 in this blog post and also more decimal time here. Regarding your second question, it's not possible to display the time as blank in a dateTime question if that question has a calculation or default. Without a calculation or default, both the date and time inputs will be empty until the user interacts with the question. Hope this helps. Best, Jim
... View more
11-18-2020
01:52 AM
|
0
|
2
|
3025
|
|
POST
|
Hi @cbolen The pulldata() function should work with decimal input. In the following example, the user inputs a decimal depth and the gpm value returned from the CSV is also stored as a decimal: It's not possible to specify how many decimal places are displayed in the form for a decimal question (trailing zeros will be dropped). If it's important to display the values to two decimal places (including trailing zeros), you could consider using text questions instead; open the CSV file in a text editor to check that the values have the desired number of digits. If you encounter further issues please feel free to share your XLSForm & CSV files so I can take a closer look. Best, Jim
... View more
11-16-2020
09:43 PM
|
1
|
1
|
1627
|
|
POST
|
Hi Andres Just to double-check, does your survey have a WHERE expression set on the inbox that could be filtering the results returned in the field app? Another thing to check is if there are surveys in other folders in the field app. A survey record can only exist in one folder at a time (either Inbox, Outbox, Sent, or Drafts) so you may need to empty the other folders before refreshing the inbox in order to return all records. Best, Jim
... View more
10-25-2020
04:51 PM
|
1
|
0
|
1219
|
|
POST
|
Hi T L The footer text color refers to the color of elements that appear in the footer, such as the Submit (✓) icon and the page controls (when using the pages style - example below). It is not possible to modify these elements or add your own text. Best, Jim
... View more
10-25-2020
04:45 PM
|
0
|
0
|
1529
|
|
POST
|
Hi Josh, thanks for the additional info. It sounds like you're using an older version of Survey123 Connect (the product name also suggests this - the name changed from "Survey123 Connect for ArcGIS" to "ArcGIS Survey123 Connect" earlier this year). Could you please check which version of Connect you have installed? Support for the multiline appearance for image questions was introduced in version 3.10; note that the current version is 3.11 (released last week). Latest downloads available here: ArcGIS Survey123 Resources | Downloads, Training, Videos & Documentation. Best, Jim
... View more
10-21-2020
03:56 PM
|
0
|
0
|
4783
|
|
POST
|
Hi Josh Mccullough, could you please provide a bit more detail about what you're seeing in Survey123 Connect versus the Survey123 field app? Or are you viewing the survey in the web app (browser)? Are you using the multiline appearance with an image question? Best, Jim
... View more
10-20-2020
09:59 PM
|
0
|
2
|
7686
|
|
POST
|
Hi Andres Thanks for reporting this - there was an issue with the way this sample was shared in Survey123 Connect version 3.9 (and earlier). You should now be able to see the Hydrant Inspection sample in the Community section. Could you please take a look and let me know if you run into any issues? Please note this sample includes a JavaScript function; it is recommended to use the latest version of Connect for JS support. See: ArcGIS Survey123 Resources | Downloads, Training, Videos & Documentation. Best, Jim
... View more
10-15-2020
03:31 PM
|
1
|
1
|
1351
|
|
POST
|
Hi Jordan Your expression is almost there; try putting the and argument inside the if() statement. Also, if() statements require three arguments: a condition; the result if the condition is true; and the result if the condition is false, i.e. if(condition, value if true, value if false) So your expression could look something like: if(${TYPECODE}='3' and ${A00MCFTOTAL}>500,'1801 Engineering Dept','Some other value') Replace 'Some other value' with the desired output if false (use '' for a blank). Please find more on formulas here Formulas—ArcGIS Survey123 | Documentation Best, Jim
... View more
10-12-2020
03:48 PM
|
2
|
1
|
1544
|
|
POST
|
Hi Antonio Microsoft Word has a built-in function for inserting dates and times. Please refer to the Microsoft help for more info: Insert today's date in a Word document - Word. Regarding adding days to today's date, this could perhaps be achieved in Word using a VBA macro or similar, but I have not tried it. Alternatively, you could use a calculation in XLSForm; in your case, would it be practical to calculate the due date in the survey itself? You could store this in a hidden field if necessary, so it doesn't show in the survey form but can be displayed in the report. More on date/time calculations can be found here Decimal date time—ArcGIS Survey123 | Documentation. The Dates and Times sample in Survey123 Connect also has some good examples. Best, Jim
... View more
10-06-2020
08:24 PM
|
1
|
0
|
3758
|
|
POST
|
Hi Katie You could achieve this in Survey123 Connect using a constraint. In the example below, the constraint .=${email1} is used to verify that the email_check question matches the value in the email1 question. When the survey response is submitted, an error will be shown if the values don't match. As an aside, you can also use a regular expression to check that the input is properly formatted as an email address. For more on constraints and regular expressions, see Formulas—ArcGIS Survey123 | Documentation (includes the regular expression for validating the email address format). Best, Jim
... View more
10-06-2020
03:21 PM
|
7
|
2
|
5256
|
|
POST
|
Hi Jordan Miller A possible workaround for this could be to split the selected workers out into separate fields and then use an OR expression for the Inbox. In the attached example, the worker choice list contains the username for each worker. The hidden questions store each selected choice using the selected-at() function (note that this is zero-indexed). I've added a constraint (optional) to limit the number of choices for the select_mutliple question to three using the count-selected() function. The WHERE expression for the inbox could then be: worker1=${username} OR worker2=${username} OR worker3=${username} Hope this is useful. Please see more info on WHERE expressions here Prepare for editing existing survey data—ArcGIS Survey123 | Documentation. Best, Jim
... View more
10-05-2020
06:46 PM
|
0
|
0
|
3119
|
|
POST
|
Hi tolga boz Just so I understand correctly, you'd like the available dress sizes to be dependent on the selected dress type, is that right? If so, this could be achieved in Survey123 Connect using cascading selects. For more information, please see Cascading and external selects—ArcGIS Survey123 | Documentation and this blog post https://community.esri.com/groups/survey123/blog/2015/10/22/cascading-selects-and-external-selects. Best, Jim
... View more
09-24-2020
06:55 PM
|
0
|
2
|
1207
|
|
POST
|
Hi Admin Admin The table-list appearance displays a series of select_one questions in a choice grid. The select_one questions must be contained in a group, and all of the select_one questions must use the same choice list. To use the table-list appearance, set the appearance for the begin group question to table-list. Please see a demo survey attached. Please find more info on the table-list appearance here: Appearance—ArcGIS Survey123 | Documentation. For the second question you could use the select_multiple question type. With this question type the respondent can select any choices that apply. Note that selected choices are stored in one field as a comma-separated string. If you wish to save the choices in separate fields you could use the technique described in this blog post https://community.esri.com/groups/survey123/blog/2017/08/30/understanding-multiple-choice-questions-in-survey123-for-arcgis (see the "Controlling how user selections are stored in ArcGIS" section). There are also several appearances that apply to select_multiple questions. Please see Appearance—ArcGIS Survey123 | Documentation for more information. An alternative is to use table-list with a yes/no choice list (also demonstrated in the attached survey). Best, Jim
... View more
09-13-2020
09:01 PM
|
1
|
1
|
4539
|
| 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
|