ssis derived column

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mmabdulkadir
    New Member
    • Jan 2012
    • 7

    ssis derived column

    i want nest condition

    here i have mentioned two columns in frompremise and topremise

    frompremise=top remise means display 'b'

    frompremise= odd value means display 'o'

    frompremise=eve n value means display 'e'

    please quick reply for me

    this condition i have used in ssis derived column
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    Use a nested if then contruct. Just be aware that the SSIS if then construct is of the form:
    Code:
    expression ? true value : false value

    Comment

    Working...