SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,702 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I can use case when in tsql, is it possible to use case condition in SSIS?
Hi @sql test,
Do you mean like this?
Field == "TrueCondition1" ? “True” : ( Field == "TrueCondition2" ? “True” : ( Field == "TrueCondition3 " ? “True” : ( Field == "TrueCondition4" ? “True” : “False" ) ) )
A same thread you may take a reference to witing-a-case-statement-in-ssis.
If I misunderstand your issue, you may provide some sample data and your expected result for us to do more test.
Regards,
Zoe Hui
If the answer is helpful, please click "Accept Answer" and upvote it.
I can use case when in tsql, is it possible to use case condition in SSIS?
Sure you can.
But where do you want to; you didn't provided and deatlied information about where and how?