I am creating a model the will iterate through the feature classes in the dataset.
It will select attributes from each feature class, the only issue is, two of the feature classes will cause a break in the process due to being void of the attribute.
Is there a way to exclude the two said feature classes from the iteration?
-
Take a look at the answer to gis.stackexchange.com/questions/112510/… which indicates how to employ if-then logic in ModelBuilder.PolyGeo– PolyGeo ♦2015年09月08日 03:30:08 +00:00Commented Sep 8, 2015 at 3:30
-
1If you are using a FeatureClass iterator you can use the wildcard parameter to filter out the problematic FeatureClasses if they are name differently.Hornbydd– Hornbydd2015年09月08日 15:59:23 +00:00Commented Sep 8, 2015 at 15:59
1 Answer 1
You could either:
- use the answer to Using Python script as precondition in ArcGIS ModelBuilder? to employ if-then logic in ModelBuilder; or
- do as commented by @Hornbydd:
If you are using a FeatureClass iterator you can use the wildcard parameter to filter out the problematic FeatureClasses if they are name differently.
Explore related questions
See similar questions with these tags.