1

I am trying to find the difference of 11 feet or more between two fields (Both are Double types). For example, I have a field called shape_length and another field called station_length and I want to see if there are any differences of 11 feet or more between the two, and select those differences. I think it's a simple SQL statement in the "Select By Attributes dialog in ArcGIS but I can't figure it out.

asked Mar 22, 2016 at 21:37

1 Answer 1

5

In your Select by Attributes you could enter something like

abs(shape_length - station_length) > 11

which will select any feature where the difference between the two values is greater than 11. The abs is for "absolute value" so makes it a positive value for assessing against the 11.

answered Mar 22, 2016 at 21:43
0

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.