I have a data flow with a derived column. I want to convert the contents of a column using an expression as follows:
If the source value is 101 convert it to 1001
If the source value is 102 convert it to 2002
If the source value is 202 convert it to 2019
Etc.
It seems like a Switch/Case statement would be ideal here. Do SSIS expressions support a Switch/Case? If not, what is the best way to handle something like this?
Thanks.