@edstrat Use the ListExploder to split your change detector list into separate features. Then:
- use a first AttributeCreator to create temporary attribute names for new and old - something like:
_attrName_old @Value(attributeName) Old
_attrName_new @Value(attributeName) New
- Use a second AttributeCreator and Attribute Value... to get the name of the attribute from the attribute value you created above:
- Use Aggregator with Group By (with your unique record id) to bundle everything back together
If you comfortable in Python you could do this in a short PythonCaller script since FME list attributes and python attributes work well together - see the PythonCaller section at the bottom of is article.
.