Link to home
Start Free TrialLog in
Avatar of yechan
yechanFlag for United States of America

asked on

Insert Null inside "Derived Task"

Hi,

I am doing a null check on a column inside a "Derived Column" task.  My Expression looks somethig like the following:

isnull( [ExpectedDelDate]) == True ? null : "someValue"

Essentially I would like to insert a null if ExpectedDelDate is a null value, otherwise insert "someValue".

thanks
ASKER CERTIFIED SOLUTION
Avatar of Jason Yousef
Jason Yousef
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of yechan

ASKER

Thanks.  I think that seemed to do the trick.  The Null(DT_WSTR, 4) syntax means to cast somethiing to null?
Yep.. check attached :) User generated image User generated image