ssisconditional-statementsconditional-split

Combine 2 Conditional Split Cases into 1


I have 1 SSIS Conditional Split with 2 conditions, which I need to combine. Both conditions are looking for the same date.

[DateFinished] > (DT_DBTIMESTAMP)"2016-09-01"

[DateTBFinish] > (DT_DBTIMESTAMP)"2016-09-01"

I have tried

[DateFinished] && [DateTBFinish] > (DT_DBTIMESTAMP)"2016-09-01"

However, this errors.

I would appreciate any help with getting the correct structure to make this work.

Thank you so much.


Solution

  • [DateFinished] > (DT_DBTIMESTAMP)"2016-09-01" && [DateTBFinish] > (DT_DBTIMESTAMP)"2016-09-01"