Data Dictionary: | County Business Patterns 2015 |
Data Source: | Social Explorer; U.S. Census Bureau |
T071. | Average Employee Wage | |||||||
Universe: none | ||||||||
T071_020 NAICS 81: Other Services (Except Public Administration)
Percent base:
None - percentages not computed
Aggregation method:
Weighted Average: weighted by variable: CBP2015_113_PAYANN_001_81
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:CBP2015_001_EMPREP_001_81 == 0)
oretval.IsNull = true;
else if (ORG:CBP2015_113_PAYANN_001_81.IsNull)
oretval.IsNull = true;
else
oretval = (ORG:CBP2015_113_PAYANN_001_81) * 1000 / ORG:CBP2015_001_EMPREP_001_81;
return oretval;
|