Can we use two expressions in expression builder in data factory?
For example:
If I have a string column and I would like to to have two expression in expression builder. the two conditions are: if a value is empty then return space '' or if a value is not integer then return the column name.
iifNull(column1,'Unknown') OR iif(!isInteger(column1),'column1',toString(null()))