In the Azure Data Factory data mapping flow, is there a way to check if a column Date
exists in the input file? If true
, select the Date
column, if not then create a Date
column but leave the column blank in the output?
I tried with conditional select
that if name=='Date'
, name the column as Date
, but it the workflow fail with the "Date" column doesn't exist.