I have the following logic to store the date in BI_StartDate as below:
- If
UpdatedDateis not null thenBI_StartDate=UpddatedDate - ELSE
BI_StartDatetakesEntryDatevalue , if theEntryDateis null thenBI_StartDate=CreatedDate - If the
CreatedDateIS NULL thenBI_StartDate=GetDATE()
I am using a derived column as seen below:
ISNULL(UpdatedDateODS) ? EntryDateODS : (ISNULL(EntryDateODS) ? CreatedDateODS :
(ISNULL(CreatedDateODS) ? GETDATE() ))
I am getting this error:
The expression "ISNULL(UpdatedDateODS) ? EntryDateODS : (ISNULL(EntryDateODS) ? CreatedDateODS :(ISNULL(CreatedDateODS) ? GETDATE() ))" on "Derived Column.Outputs[Derived Column Output].Columns[Derived Column 1]" is not valid.


BI_StartDatemeans "Date de bon d'intervention"? - Ilyes