I am importing an excel file with a few columns. I want to add a derived column that will do something like the following: iif column1="2" and column3="y" and column4="p" then "Slow" elseif column1="6" and column3="x" and column4="row" then "Fast" else "Medium" How can i write the above in SSIS?
Hi collie have ur derived column expression as col1 == 2 && col3 == "y" && col4 == "P"? "SLOW" : col1 == 6 && col3 == "x" && col4 == "row" ? "Fast" : "Medium" ____________________________________________________________ Please mark post/s answered / help pul if they answer ur query - -Kunal
Proposed As Answer byKunal JoshiSunday, November 08, 2009 4:15 PM