Data Dictionary: | County Business Patterns 2017 |
Data Source: | Social Explorer; U.S. Census Bureau |
T071. | Average Employee Wage | |||||||
Universe: none | ||||||||
T071_019 NAICS 72: Accommodation and Food Services
Percent base:
None - percentages not computed
Aggregation method:
Weighted Average: weighted by variable: CBP2017_113_PAYANN_001_72
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:CBP2017_001_EMPREP_001_72 == 0)
oretval.IsNull = true;
else if (ORG:CBP2017_113_PAYANN_001_72.IsNull)
oretval.IsNull = true;
else
oretval = (ORG:CBP2017_113_PAYANN_001_72) * 1000 / ORG:CBP2017_001_EMPREP_001_72;
return oretval;
|