|
POST
|
Typically I see people using the Arcade IIf(IsEmpty($feature.observation_number) for example to only calc if empty. But as others posted this all falls apart offline. Also if you have multiple users creating features at the same time (a user adds a feature then spends say 10 minutes filling it out then user 2 starts a add during that time). Coming up with your own id field or using a GUID (or even calc the globalid into a static field) is usually a better way to go. In order to calc at insert into the database only a backend server can do that using attribute rules - but this is not available in AGOL yet (I heard it was coming but have not seen anything lately). As others posted we never do more than one visit to a site in a day so we use a date stamp like this. You could add time to this as well. Concatenate($feature.PointID, "_", text(ToLocal($feature.FieldEvalDate), "Y-MM-DD")) Hope that helps
... View more
01-29-2025
06:31 AM
|
1
|
1
|
4224
|
|
POST
|
The item page in AGOL will let you download all kinds of formats including JSON. I use it all the time and it works great up to about 10 GB then it gets cranky. I also have a nightly python backup script that backups my AGOL service to GDB. It does about 15 every night. I can even backup by layer to remove attachments and cut the size down. You may be able to do some things with ArcGIS for Sharepoint but not sure there. I would also look into ArcGIS for Excel if you want to see multiple forms and tables all at once. Just make a map of all your forms then in Excel click and they add in. Plus its all live time for updates. You can even edit right there. Hope that helps
... View more
01-28-2025
03:49 PM
|
0
|
0
|
2337
|
|
IDEA
|
Some more info here with ticket numbers https://community.esri.com/t5/arcgis-experience-builder-ideas/related-tables-in-arcgis-web-experience-builder/idi-p/1033962/page/2#comments
... View more
01-27-2025
03:55 PM
|
0
|
0
|
1708
|
|
POST
|
The search appearance has an intersects option but pretty sure it only works against a spatial layer that is a URL to a service. So not to a csv and they would need to be online. See here https://community.esri.com/t5/arcgis-survey123-blog/dynamic-choice-lists-using-search-appearance/ba-p/1060838 What we do is instead is calculate the distance from their current location to where they are supposed to be and then warn them in Red if it is too far. We do this as part of a Field Maps workflow where they tap the point and it passes lat/long into the form (you could look into this also as its good for helping crews find the location). You could do a pulldata to the csv based on the location they select then give a big red text warning if they are too far or even a constraint - but be careful if their GPS is off it could stop them. The distance calc looks like this.. SampledMidLatitude is a pulldata from the geopoint question and DesignLat and Long are the static from the CSV (or Field maps). round(acos(sin(${SampledMidLatitude} * pi() div 180)*sin(${DesignLat} * pi() div 180) + cos(${SampledMidLatitude} * pi() div 180)*cos(${DesignLat} * pi() div 180)*cos((${DesignLong} * pi() div 180)-(${SampledMidLongitude} * pi() div 180))) * 6371000,2) Hope that makes sense and helps.
... View more
01-27-2025
11:13 AM
|
2
|
1
|
1599
|
|
POST
|
If I am following you may get farther by creating a unique key. Looks like site + plot + tree may work. Use this for the lookup.
... View more
01-27-2025
07:07 AM
|
0
|
5
|
4127
|
|
POST
|
I am not sure but I think it does send the entire repeat table. That is why we could not use it. So keep an eye on it for sure. If it works mark as a solution please.
... View more
01-23-2025
03:21 PM
|
0
|
0
|
3225
|
|
POST
|
Looks like you have 3 periods when it should be 2 in position. I would actually use ${NameofRepeat} instead as it is safer.
... View more
01-23-2025
12:02 PM
|
0
|
2
|
3230
|
|
POST
|
Kinda sorta not really. See my post here for all the details. For sure my number 1 ask the last few years now. https://community.esri.com/t5/arcgis-survey123-questions/prepopulate-answers-in-a-repeat-with-last-values/m-p/1567256#M60455
... View more
01-23-2025
10:33 AM
|
0
|
4
|
3240
|
|
POST
|
It should not clear the list. Do you have a relevant or something on? If you can post or send the form I can look at it. Not seeing anything off in your images.
... View more
01-23-2025
07:46 AM
|
0
|
0
|
2111
|
|
POST
|
Mmm maybe 123 has support but not the reporting. @ZacharySutherby ?
... View more
01-22-2025
02:39 PM
|
0
|
5
|
3584
|
|
POST
|
Check the actual data type in the AGOL service though. I would also add time to the report just to see what time it has. Probably midnight. I do not do much reports so not sure. I do remember that starting a field name with a _ is an issue. Esp layer in queries. I do not think that is this issue though.
... View more
01-22-2025
01:07 PM
|
0
|
7
|
3588
|
|
POST
|
What is the data type in the service? It may be regular date then you can change the form fine. If not set the current field to hidden then add a second date/time field to your form. Calc over the old dates to the new dates and then you should be good to go. No need to start over. Again this was defaulting to noon. Is it not now?
... View more
01-22-2025
11:19 AM
|
0
|
9
|
3610
|
|
POST
|
The problem is that the service backend always has time. They just released a date only last year but its not fully rolled out yet I think. This means it is probably defaulting to midnight UTC and then you can go a day back easy. How old is your 123? A few years ago they changed date only to noon to get around this. I wonder if setting the esri type is getting you. You can instead use date as the field type in column 1 in 123 and see if that is better. For us in the end we just always have time. Its good info anyway and it reduces all these issues.
... View more
01-22-2025
10:53 AM
|
0
|
11
|
3620
|
|
POST
|
If you mean will it pull items off the list as you pick them, then no. No way to do that really that I have seen. Best I got is it makes a list as you go (using join) and then checks the current selection against that list. No more complicated than that. Note you probably do not any of the xyz codes or unknown codes part. That is something we use to track plants that the crew does not know what it is. Then its easier.
... View more
01-22-2025
06:30 AM
|
0
|
2
|
2132
|
|
IDEA
|
In New Map View you can now make Forms that have calculated values (plus you can control Editable, Required, and Visible). In our workflow we have the user fill out some fields then have some auto calculations in the background fields that calculate important values for us like due dates, project size, etc. We would want those calculated fields to fire off when editing in Excel. I doubt you could get them to go when editing a cell? Constraining to a widget on edits would be ok for us. That may mess up your nice domain drops down also not sure. For the actual editing you could look at the Experience Builder widget as an example. You may even be able to just use their code. They have a 123 widget as well. Thanks a lot for considering.
... View more
01-21-2025
11:16 AM
|
0
|
0
|
1761
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-08-2026 07:34 AM | |
| 1 | 3 weeks ago | |
| 1 | 07-08-2026 03:46 PM | |
| 1 | 07-08-2026 03:08 PM | |
| 1 | 07-08-2026 03:15 PM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|