Conditional Split Expression

  • I am attempting to write an expression for a conditional split. The Column name is InvalidAreaCode and the values of the column will always either be NULL or Invalid Area Code. Right now the expression looks like:

    [InvalidAreaCode] == "Invalid Area Code"

    When one of the NULL values is evaluated, it fails with "output "Bad Number" (127)" evaluated to NULL, but the "component "CSPLT - Split our bad Phone Numbers from Legit Numbers" (95)" requires a Boolean results.

    I see NULL Functions within the CSPLT, but I cant get it to work correctly.

    Any help will be greatly appreciated!!!

  • Just change your expression to [InvalidAreaCode]== "Invalid Area Code" || ISNULL([InvalidAreaCode])

    Regards

    Lempster

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply