|
BLOG
|
That totally makes sense now! Appreciate the explanation. I did a quick search but couldn't find anything: do you do blog posts regularly? I'd be interested in reading those, if you can provide the location. Your explanations are so well constructed; I can understand the logic much better than any other Python source I've come across.
... View more
03-31-2025
05:35 AM
|
1
|
0
|
8394
|
|
BLOG
|
@RichardFairhurst : Thank you for such a great resource. I've been able to implement a solution using "Example 3 - Transfer of Multiple Field Values between Feature Classes involving Complex Field Manipulations" and am trying to understand a part of it: In line 23, updateRow[1] refers to the URL field ("UrlField1") of the update feature class and valueDict[keyValue][0] is the value field ("ValueField") of the source feature class. I'm wondering why the valueDict[keyValue] is [0] and not [1]? In the sourceFieldsList, "ValueField" is in the second position and since Python starts from 0, shouldn't that value be [1]? The "UrlField1" is in the second position in the updateFieldsList, so I expect it to be [1]. Obviously your code works, I'm just trying to learn! I'm sharing this with my colleagues because it's been so helpful!
... View more
03-28-2025
12:53 PM
|
0
|
0
|
8469
|
|
POST
|
Talked with Esri Tech Support and found that the issue is fixed if the appearance setting that I entered (minimal) is removed so the cell is empty. Not a huge deal for me to keep the question expanded. Just thought if anyone else was having this issue that I'd let people know of the solution!
... View more
03-26-2025
09:59 AM
|
1
|
0
|
1609
|
|
POST
|
If I'm understanding correctly, I would try something like this in the calculation field: if(selected(${accessible},'No'),"N/A","Inlet and Outlet") If the accessible question is marked "No," return "N/A," else return "Inlet and Outlet."
... View more
03-04-2025
12:17 PM
|
0
|
0
|
553
|
|
POST
|
This worked for me: https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-download-survey-data/ba-p/1141835
... View more
03-04-2025
12:02 PM
|
0
|
0
|
683
|
|
POST
|
Thanks for your response. I've tried this but it doesn't work. 😞 @ZacharySutherby @JenniferAcunto
... View more
03-03-2025
08:01 AM
|
0
|
0
|
1705
|
|
POST
|
Unfortunately that gives the same behavior. Works in Survey123 Connect but not in the actual survey.
... View more
02-26-2025
05:31 AM
|
0
|
0
|
1746
|
|
POST
|
I have a survey where if a user has (a) file(s) that contain existing geometry, they mark a select_one question "Yes" (the only option) and then are asked to attach the file(s) in a subsequent question (file_repeat). I have entered the following into the file_repeat question's required field, so the survey can't be submitted without adding an attachment: selected(${exist_geo},'yes'). In testing in Survey123 Connect, the survey displays as it should: However, when filling out the survey on a browser after publishing in Survey123 Connect, after the user selects "Yes," the "Attachments" section does not toggle to "Required" and the user can submit the survey without attaching anything: In the Excel spreadsheet, the "Field Type Information" for the required cell displays this data validation error: I have tried: Changing the required field to "yes" and entering "selected(${exist_geo},'yes')" to the constraint field Changing "yes" to "Yes" in selected(${exist_geo},'yes') Changing single quotation marks to double in selected(${exist_geo},'yes') Moving selected(${exist_geo},'yes') to the required field in the file record rather than the file_repeat record Updating Survey123 Connect to the most recent version Help! @DougBrowning
... View more
02-25-2025
07:57 AM
|
0
|
5
|
1774
|
|
POST
|
There are a couple of things: If you want to have an email always sent, you have to remove the condition, otherwise it will only be sent when that condition is satisfied. I've never played with attaching files to emails, but are you trying to attach the file that's associated with the record that's being modified (the trigger) or a different file that's been saved to OneDrive? If it's the latter, you need to make sure OneDrive is connected to the Flow somehow (I don't see it in there now). I worked with Esri Services to help get my Flow working. There's not great documentation out there--now that I have something that works, I know I wouldn't have been able to figure out my process without assistance.
... View more
02-20-2025
06:25 AM
|
0
|
1
|
1494
|
|
POST
|
I have created a hub in Experience Builder that contains several pages. The main ones are a map page and a summary page. On the map page, I have a map with an editable hosted feature layer where we are keeping track of practices that have been implemented on tracts of land. Each record contains a polygon and many attributes, including Practice 1, Practice 2, Practice 3, Practice 4, and Practice 5. The user fills out the record by selecting an implemented practice from a domain list under the "Practice 1" field. If there are multiple practices implemented on the tract, they repeat the process for each subsequent practice in the subsequent practice fields. Each practice field has the exact same domain list. On the summary page, users can see the attribute table of the hosted feature layer. I'm building different filters so the user can summarize fields in the ExB or export the filtered table to CSV for further analysis. They need the capability of filtering by the different practices across all 5 of the practice fields. This can be done in the Filter widget by creating a "Clause Set" and asking for user input, which allows the user to select a value from the list. However, the user has to select the practice 5 times to search all 5 practice fields for one type of practice. I was wondering if there is a way to select the practice once but filter all 5 fields? Here's the filter that works (but is unneccessarily duplicative): I've tried creating a Group Filter but even though I've selected all 5 fields in the "All fields" section, the "Main field" is the only one that's being filtered. Below is an example of what this looks like. I've selected "No-till" from the list, but the only records showing in the filtered list are the ones that have "No-till" in the first practice field (purple lines), not in 2 or 3.
... View more
02-19-2025
10:51 AM
|
0
|
0
|
698
|
|
POST
|
Thanks for the reply. I think it was something that was in the feature layer being queried that made the data appearance seem random. Works now: pulldata("@layer", "getValue", "attributes.contact_name", "[service layer]", concat("contact_phone='", ${prim_phone},"'"))
... View more
02-11-2025
05:09 AM
|
0
|
0
|
1982
|
|
POST
|
Well, for the project I was doing I ended up selecting all the points inside the clip layer and exporting as a new layer. However, something that's a little easier is to select all features inside the clip layer, right-click on the layer in the Contents pane, click on "Selection," and then "Make Layer from Selected Features." It at least cuts out having to manually export the features.
... View more
02-04-2025
05:12 AM
|
1
|
0
|
1172
|
|
POST
|
My projects haven't crashed, but my attribute tables constantly freeze up after calculating geometry (on only one feature). I have to close the table and reopen. I've tried closing the project and reopening, but the issue still occurs. Will be passing this onto our Esri rep, too.
... View more
01-31-2025
07:41 AM
|
1
|
0
|
2619
|
|
IDEA
|
@BBicking1 : I'm still having the issue and I'm running 3.2.2. Whenever I need to run a GP Tool, I view the pane by clicking on my GP Tab I've docked. It displays the last GP tool I ran. I press the back arrow and it toggles to the Catalog Tab, making the Catalog window visible. I then have to click on the GP tab again to view the main screen of the GP tools window. Update: my ArcPro has been updated to 3.4.0 and this is still occurring.
... View more
01-02-2025
10:19 AM
|
0
|
0
|
1085
|
|
IDEA
|
I have been directed by Esri Support to place this idea on this page. The Technical Support Team said that the file geodatabase does not currently support this functionality (this is expected), but the enterprise geodatabase does support it. Therefore, I'd like to suggest implementing this feature in future patches. I am continuing to work with the Support Team on this as well.
... View more
01-02-2025
05:57 AM
|
0
|
0
|
1014
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 03-03-2026 12:15 PM | |
| 1 | 02-23-2026 11:59 AM | |
| 1 | 02-06-2026 05:48 AM | |
| 1 | 02-04-2026 07:38 AM | |
| 1 | 02-04-2025 05:12 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|