Data Dictionary: | County Business Patterns 2016 |
Data Source: | Social Explorer; U.S. Census Bureau |
T071. | Average Employee Wage | |||||||
Universe: none | ||||||||
T071_011 NAICS 52: Finance and Insurance
Percent base:
None - percentages not computed
Aggregation method:
Weighted Average: weighted by variable: CBP2016_113_PAYANN_001_52
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:CBP2016_001_EMPREP_001_52 == 0)
oretval.IsNull = true;
else if (ORG:CBP2016_113_PAYANN_001_52.IsNull)
oretval.IsNull = true;
else
oretval = (ORG:CBP2016_113_PAYANN_001_52) * 1000 / ORG:CBP2016_001_EMPREP_001_52;
return oretval;
|