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.