Data Dictionary: | County Business Patterns 2014 |
Data Source: | Social Explorer; U.S. Census Bureau |
T071. | Average Employee Wage | |||||||
Universe: none | ||||||||
T071_003 NAICS 21: Mining, Quarrying, and Oil and Gas Extraction
Percent base:
None - percentages not computed
Aggregation method:
Weighted Average: weighted by variable: CBP2014_091_PAYANN_001_21
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if( ORG:CBP2014_021_EMPREP_001_21 == 0)
oretval.IsNull = true;
else if (ORG:CBP2014_091_PAYANN_001_21.IsNull)
oretval.IsNull = true;
else
oretval = (ORG:CBP2014_091_PAYANN_001_21) * 1000 / ORG:CBP2014_021_EMPREP_001_21;
return oretval;
|