• Another way is to add a "Derived Column Transform" and use the expression "?" with a default value that replaces null.

    Example: ISNULL([testColumn])?0:[testColumn]

    Raj