Data Dictionary: | ACS 2012 (3-Year Estimates) |
Data Source: | Social Explorer; U.S. Census Bureau |
T159. | Average Commute to Work (in Min) | |||||||
Universe: Average Commute to Work (in min) | ||||||||
T159_001Average Commute to Work (in Min)
Percent base:
None - percentages not computed
Formula used to compute this variable:
if( ACS2012_3yr:B08134001 == 0)
Return_Value.IsNull = true;
else
Return_Value = Convert.ToInt32(Math.Round((double)ACS2012_3yr:B08013001 / (double)ACS2012_3yr:B08134001));
if (ACS2012_3yr:B08134001.IsNull)
Return_Value.IsNull = true;
if (ACS2012_3yr:B08013001.IsNull || ACS2012_3yr:B08134001.IsNull)
Return_Value.IsNull = true;
|