I am currently using ArcMap 10.3's ModelBuilder. Having created a feature class of 300 zones, I would like to filter these to the 15 zones above 200 hectares in size, the model is shown below:
I have tried to use the following SQL Code to achieve this, but it never has an effect when running the model.
1 Answer 1
This sequence of tools successfully selected the right areas. While setting up the "Select" tool, the "Get Unique Values" button for "Shape_Area" still did not get any values (as the Feature Class does not exist before the model is run), however this sequence of tools meant that entering the correct expression gave the correct result.
In a nutshell the problem was in the processing before selection, not the selection itself.
Explore related questions
See similar questions with these tags.
"Shape_Length" < 2000000
is everything less than 200 hectares, not everything greater than 200Shape_Length
is the correct field? Hectares is an area value so I would expect a field calledShape_Area
or similar.