Data Dictionary: | LARC Demographic Data |
Data Source: |
T001. | LARC Demographic Data | |||||||
Universe: none | ||||||||
T001_018Population Change 2023 - 2028 Rate
Percent base:
None - percentages not computed (variable is table universe)
Aggregation method:
Addition
Formula used to compute this variable:
#ReturnType oretval = new #ReturnType();
if (ORG2028:TOT_POP.IsNull || ORG:TOT_POP == 0 || ORG:TOT_POP.IsNull)
oretval.IsNull = true;
else
oretval = (ORG2028:TOT_POP-ORG:TOT_POP) / ORG:TOT_POP * 100;
return oretval;
|