I have an integer column in my database named Email_Num. In SSIS, I'm populating an excel spreadsheet from the database.
When Email_Num has a value of 0, I want the value to be an empty string instead. I'm trying to do this in a derived column but having trouble. Is this possible and if so could you lead me in the right direction? Thanks
[Email_Num] == 0 ? (DT_STR, 10, 1252) [Email_Num] : [Email_Num]