Question

Aggregator, not Merge Incoming Attributes

  • 2 August 2018
  • 3 replies
  • 14 views

Badge +11

Table of attributes I want to merge with Group By: FILENAME

Input

Aggregator

Output

Desire


3 replies

Userlevel 2
Badge +17

The output is correct, since <null> is a value. Consider using the NullAttributeMapper to remove all <null> values (i.e. change to <missing>) to get the desired result.

Badge +11

The output is correct, since <null> is a value. Consider using the NullAttributeMapper to remove all <null> values (i.e. change to <missing>) to get the desired result.

Success, the fields need's to be "MISSING", NULL and BLANK don't work.

 

Thank-you

 

 

Userlevel 2
Badge +17

The output is correct, since <null> is a value. Consider using the NullAttributeMapper to remove all <null> values (i.e. change to <missing>) to get the desired result.

Good to hear.

 

<empty> is a string value consisting of no characters; <null> is a special value indicating that the attribute exists but it doesn't have a valid value; <missing> indicates that the attribute does not exist.

 

 

Reply