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