LAE

Welcome to the LAE community!  Please feel free to start a discussion in the discussion tab or join in a conversation.

Discussions

Members

Resources

Events

 View Only
  • 1.  How to exlude NULL values in my columns

    Employee
    Posted 10-18-2017 02:53

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: DSabsi

    Dear all,

    I need your help with excluding NULL values in my column.
    Can anyone tell me how I can solve this ?
    I've tried to use exclude NULL in a filter behind the Excel file but this is not working.

    exclude NULL values in my columns.JPG

    THank you in advance !

    Cheers,

    DSabsi


  • 2.  RE: How to exlude NULL values in my columns

    Employee
    Posted 10-18-2017 08:06

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: stonysmith

    Do you want to omit the entire row, or do you simply want it not to say "NULL"?

    The Excel node has an option "NullRowBehavior" which you can set to Ignore so that you won't get the row at all.

    If you want to convert "NULL" to some other value such as the empty string "", you can use a filter such as this:

    emit *
    override emit WIJKTEAM.ifNull("") as WIJKTEAM
    override emit CLIENT.ifNull("") as CLIENT

    and so on.


  • 3.  RE: How to exlude NULL values in my columns

    Employee
    Posted 10-22-2017 06:10

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: DSabsi

    Thank you very much, what you said works!!!

    Cheers,

    DSabsi




    Originally posted by: stonysmith
    					

    Do you want to omit the entire row, or do you simply want it not to say "NULL"?

    The Excel node has an option "NullRowBehavior" which you can set to Ignore so that you won't get the row at all.

    If you want to convert "NULL" to some other value such as the empty string "", you can use a filter such as this:

    emit *
    override emit WIJKTEAM.ifNull("") as WIJKTEAM
    override emit CLIENT.ifNull("") as CLIENT

    and so on.


  • 4.  RE: How to exlude NULL values in my columns

    Employee
    Posted 10-27-2017 06:09

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: DSabsi

    Hi @stonysmith , it worked! thank you very much