Data Dictionary: | County Business Patterns 2019 |
Data Source: | Social Explorer; U.S. Census Bureau |
T071. | Average Employee Wage | |||||||
Universe: none | ||||||||
T071_009 NAICS 48-49: Transportation and Warehousing
Percent base:
None - percentages not computed
Aggregation method:
Weighted Average: weighted by variable: CBP2019_113_PAYANN_001_48
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:CBP2019_001_EMPREP_001_48 == 0)
oretval.IsNull = true;
else if (ORG:CBP2019_113_PAYANN_001_48.IsNull)
oretval.IsNull = true;
else
oretval = (ORG:CBP2019_113_PAYANN_001_48) * 1000 / ORG:CBP2019_001_EMPREP_001_48;
return oretval;
|