When I run my SSIS package, I receive a #Name? in a column cells where no value is present, so I created a Conditional Split using the following condition, ISNULL(columnname) || LEN(columnname) == 0.
The customer prefers that the column cell be empty instead of displaying a 0. When I replace the 0 with ? or “ ”, the conditional split does not recognize the character.
What do I need to do to make the column cell appear empty when there is no value returned.
Thanks for any assistance that can be given.
You could create a Derived Column and convert it to NULL.
So, if you're getting a string of "#Name?" you could use:
Or if you're actually getting the value 0 you could use: