Combine 2 Conditional Split Cases into 1

59 views Asked by At

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.

1

There are 1 answers

1
Chris Mack On BEST ANSWER
[DateFinished] > (DT_DBTIMESTAMP)"2016-09-01" && [DateTBFinish] > (DT_DBTIMESTAMP)"2016-09-01"