Hi,
I am trying to calculate the percentage change in area between two sets of postal code polygons.
So I have an old polygon file and a newer one, and I connect them to an AreaCalculator to get the area of the polygons. Now, for the calculation of %change I would use the ExpressionEvaluator but I cannot figure out how to keep the output tied to its original row. It either puts out way too many values as its own thing or treats it as one big calculation.
I just can't really figure out how to set this up. It should be as simple as X divided by Y but it does not seem to want to cooperate on the output.
This
is what I have so far. It creates the _area_F0 and E0 as I want, but
when I try to do the division in the expressionevaluator it either fails
saying it's dividing by 0 if I use the "/" operator in an equation or
if I use the "div" function it runs but created a row for each
individual row in both readers so it ends up with 75k entries where the
result value is null. it should end with 38217 rows where 37280 should
have the result and the rest are null because there's no matching value.
Any advice on this would be greatly appreciated. Thank you.