Hi William
SSA allows an administrator to assign a custom html template to individual layers within a map config. Here is a link to the documentation http://support.pb.com/help/analyst/12.0/admin_guide/en/index.html#appendix/appendixD.html.
These templates are based off the angularjs library so you can write logic directly into the templates!
You should be able to filter individual fields with the following snippet (replacing No_Zone with the applicable column name):
<div ng-if="feature.No_Zone.value == 'T'">
<strong>{{feature.No_Zone.name}}: </strong>
<span>{{feature.No_Zone.value}}</span>
</div>
Or since your are always looking for the value 'T' you can do all 80 fields at once using this snippet:
<div ng-repeat="columnname in notSorted(feature.featureAttributes) | filter : '!stratusid'" ng-if="feature[columnname].value == 'T'">
<strong>{{feature[columnname].name}}: </strong><span>{{feature[columnname].value}}</span>
</div>
The documentation for the angularjs directives I used can be found here https://docs.angularjs.org/api/ng/directive/ngIf and https://docs.angularjs.org/api/ng/directive/ngRepeat