Hi,
I have a column called Manager_GEID and I want to check whether this column contains null values or not. If it contains null values then i want to put it under an invalid category and if not then I want to put it under a valid category.
I am using the below expression in conditional split in ssis to check this:
Valid category: !ISNULL(mgr_geid)
Invalid Category: ISNULL(mgr_geid)
But this is not working the wat it is expected to. Please help.
Thanks