Relevant for pulling data from geopoint

391
2
Jump to solution
11-30-2017 11:55 AM
BrentKinal1
Occasional Contributor III

I would like to hide my horizontal accuracy field if a geopiont is manually entered. Can someone recommend syntax for the relevant clause?

Thanks!

Tags (2)
0 Kudos
1 Solution

Accepted Solutions
JamesTedrick
Esri Esteemed Contributor

As indicated at Geopoints—Survey123 for ArcGIS | ArcGIS, the function to get the horizontal accuracy is pulldata('@geopoint', ${location}, 'horizontalAccuracy') .  When a point is manually set, this value becomes null:

 

The appropriate relevancy calculation is 
pulldata('@geopoint', ${location}, 'horizontalAccuracy') != null

View solution in original post

2 Replies
JamesTedrick
Esri Esteemed Contributor

As indicated at Geopoints—Survey123 for ArcGIS | ArcGIS, the function to get the horizontal accuracy is pulldata('@geopoint', ${location}, 'horizontalAccuracy') .  When a point is manually set, this value becomes null:

 

The appropriate relevancy calculation is 
pulldata('@geopoint', ${location}, 'horizontalAccuracy') != null

BrentKinal1
Occasional Contributor III

Perfect! Thanks.

0 Kudos