Skip to main content
I have a shapefile that has a field in the attribute table called "QA_TYPE" with the domains of:

 

IN EDIT

 

ENVRIO REVIEW

 

COMPLETED

 

GIS REVIEW

 

 

I'm trying to find a way to count how many feature are in each stage of review. For instance, If I have 8 features that are 'IN EDIT' and 12 that are 'COMPLETED' i want to write a text file that looks like:

 

 

IN EDIT: 8

 

COMPLETED: 12

 

 

Thanks!
Use the StatisticsCalculator and GROUP BY "QA_TYPE" @apence23
Aggregator, Listbuilder, Statistciscalculator.

 

Group by qa-type.

Reply