|
POST
|
Is there a character limit for survey names? I am unable to publish a survey and this is the error message I get, but there's no way to view the full message so that's the only thing I could think it might be: P.S. The fact that I can't expand to view the whole error message is definitely an oversight for the interface. Would be great if Esri could correct that soon! 🙂
... View more
05-03-2022
06:18 PM
|
1
|
2
|
1796
|
|
IDEA
|
Has Esri considered adding this functionality at all? This is an old Idea and it doesn't seem there's been any action on it. Is there any potential to it being "In Consideration" or "In Product Plan" soon?
... View more
05-02-2022
08:57 AM
|
0
|
0
|
2620
|
|
POST
|
Thank you @DougBrowning and @JeremieCote for your responses! I did think it had something to do with the choice names at first, and I tried making edits to those CSV files but it was still giving me trouble. I believe what was actually causing the issues for me was using the relevant instead of the body::esri:visible columns. This blog by Ismael helped to explain the key difference between the two columns: The relevant column, like body::esri:visible, controls the visibility of a question, but it also clears the value in the question when the expression evaluates to false. Big difference! Visible and relevant are two very different things! The relevant column affects both the question's visibility AND its value. This can be both very useful and also sometimes problematic. For example, say a question is relevant and the user answers it. Now the user changes something in the form that makes that question not relevant. At that point, whatever value was entered in the question is cleared. That data is lost forever. This is often known as question skipping, which is different to simply controlling the visibility of a question. I updated my XLS form and submitted some test surveys, made several edits through the inbox, and things appear to be working as they should for now. So, hopefully problem solved! 🙂
... View more
04-30-2022
12:45 PM
|
2
|
0
|
2267
|
|
POST
|
Hello, I need users to be able to edit existing surveys after submission, and this has to be done through the inbox since the survey contains nested repeats. I added "allowUpdates=true query" to the bind::esri:parameters column and that worked to retrieve almost all the data from the repeats. However, there is still a question for species name that is not returning when I open the survey in the inbox. The behavior seems somewhat irregular as well, as I tested this last night and it appeared to be working. Here's what it *should* look like, when opening a previously submitted survey from the inbox: But often when I open the group to view what was submitted, it looks like this, where the percent cover and dominant status from before are still populated, but the species name and indicator status aren't. Any ideas what might be going on, and how I can fix it? Thanks!
... View more
04-29-2022
10:39 AM
|
0
|
3
|
2312
|
|
POST
|
I also found these articles that reference the same "FormLogicError" message....perhaps there's something in them that could help? https://community.esri.com/t5/arcgis-survey123-questions/formlogicerror-could-not-evaluate-model-instance/td-p/836508 https://community.esri.com/t5/arcgis-survey123-questions/formlogicerror-in-survey123-webapp-with-relevant/td-p/782182
... View more
04-25-2022
11:59 AM
|
0
|
0
|
1952
|
|
POST
|
So, uhhh....I've never had an error quite like that before but I'll try to help (unless someone else more knowledgeable jumps in!) So, looks like you're creating this survey in the web version rather than Connect, correct? This is just a wild guess, but I wonder if that apostrophe in Allen's Hummingbird is causing an issue? That's an option from a select_one or select_multiple question, correct?
... View more
04-25-2022
11:56 AM
|
0
|
1
|
1953
|
|
POST
|
Ok yup, that's exactly the info I wanted to see in your screenshot. Just needed to reference 0, 3, 5, 6, 10 instead of 0, 1, 2, 3 Glad you got it to work!
... View more
04-22-2022
12:46 PM
|
1
|
0
|
7915
|
|
POST
|
Oh, interesting. What type of layer is layerID1? Can you also share a screenshot of what the REST endpoint looks like for the feature service?
... View more
04-22-2022
12:33 PM
|
0
|
3
|
7917
|
|
POST
|
After a quick glance, I believe it's because you're trying to reference ${aa} inside of the repeat (in the report template), but in the xls form that question is not part of a repeat. Looks like ${aa} is declared in row 36 and the repeat isn't created until row 56 of the XLS form.
... View more
04-22-2022
11:44 AM
|
1
|
1
|
2772
|
|
POST
|
Got it! Here's the syntax you want: if(selected(${port_size},'2'),'200', if(selected(${port_size},'2.5'),'300', if(selected(${port_size},'4.5'),'750','N/A'))) And I'm including this image here to show a trick I use when writing nested statements. I used a text editor (notepad++ in this case) that has syntax highlighting to help me with the parentheses. Notice in the screenshot, the very last parentheses is red, and it shows that it matches up with the very first parentheses (also red).
... View more
04-22-2022
11:17 AM
|
1
|
1
|
4237
|
|
POST
|
Well for an if-statement it would be: if(selected(${port_size}, '2'), '200', 'N/A') In this example, it's saying IF 2 is selected for "port size", assign a value of 200 for this field, ELSE IF 2 isn't selected, assign 'N/A'. The key is to have a value for the IF TRUE and ELSE parts of the statement. You can make the if-statement check for multiple conditions, like IF 2, return 200. IF 1, return 150. If neither of those are true, then return X. Here's one of my posts from several years ago where James Tedrick provided a very helpful answer regarding the syntax for nested if-statements. I still reference it when I write them!
... View more
04-22-2022
10:26 AM
|
1
|
3
|
4257
|
|
POST
|
Hi Megan! There is documentation on all the survey syntax for formulas here So, if all you want to do is multiply those two fields, it would be ${total_elapsed_time} * ${gmp} (I assumed the gmp field is what you were using for gallons per minute?) If there's something I'm not understanding about what you're trying to accomplish, please let me know and I'll try my best to help!
... View more
04-22-2022
09:54 AM
|
0
|
0
|
4287
|
|
POST
|
And Connect is as well? I was having similar issues with displays like this and updating the software fixed my issue. Other than that...I really don't know what else might be causing it. Sorry!
... View more
04-21-2022
09:47 AM
|
1
|
1
|
2057
|
|
POST
|
Hmmm, could it be due to a version difference? Try updating to the latest version of S123 field app on the device?
... View more
04-21-2022
09:27 AM
|
0
|
0
|
2064
|
|
POST
|
This documentation should be very useful https://doc.arcgis.com/en/survey123/browser/analyze-results/featurereporttemplates.htm And here is a great post from James Tedrick about the pulldata function: https://community.esri.com/t5/arcgis-survey123-blog/use-existing-data-in-your-survey-the-pulldata/ba-p/896889 Hope it helps!
... View more
04-20-2022
11:51 AM
|
1
|
0
|
6593
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 3 | 2 weeks ago | |
| 6 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 44 | 2 weeks ago |
| Online Status |
Online
|
| Date Last Visited |
Wednesday
|