This is just not something that we would do. Feature Counts are not natively presented in such a manner in ArcGIS Pro. Writing a custom JavaScript or Web App, would allow you to control the TOC, and possibly include a feature count.
To determine within Pro, what these counts are - for errors and subnetwork errors. Open the Dirty Areas table, and do a query: Select by Attributes where Error Code Is not equal to 0 (ERRORCODE <> 0 [in SQL]) - this will give you all of the dirty areas which are associated with errors of some sort.
Another option is to use a Map join.
First do the above selection on the Dirty Areas table. Right click -> Selection -> Create Layer from Selection.
Now you have a layer 'Dirty Area selection' -- which is only the error features. Next create a join for the class you are interested in cleaning up (Junction, GlobalID) join to: (Dirty Areas, Feature Guid). Uncheck the box to keep all target features.
And you will be left with a junction class (in my example), which contains only the features that have associated errors that need to be addressed (2 features in my example).
Hope that helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.