Hi
I am importing data from an Ms Excel spreadsheet. One of the columns should be in a date format...but it sometimes is the
format 'Indefinite'
Therefore I am trying to created a Derived Column transformation as follows:
([AOC End Date] == "Indefinite" ? "01/12/2099": [AOC End Date])
Ie if [AOC End Date] is not equal to Indefinate then set it to 01/12/2099 else set it as [AOC End Date]
What am I doing wrong here?