Data Dictionary: | Picture of Subsidized Households 2016 |
Data Source: | Social Explorer; U.S. Department of Housing and Urban Development |
A22. | Occupancy of Subsidized Units (All Programs) | |||||||
Universe: Subsidized Units | ||||||||
A022_003 Vacant
Aggregation method:
Addition
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if(ORG:SUBSID2016_009_pct_occupied < 0 || ORG:SUBSID2016_009_total_units < 0)
oretval.IsNull = true;
else
oretval = ORG:SUBSID2016_009_total_units - ((ORG:SUBSID2016_009_pct_occupied * ORG:SUBSID2016_009_total_units) / 100);
return oretval;
|