I have data coming in from SQL Server that has some null values which I want to replace.
In this example I have 3 rows of data, 2 rows have a null value and one has my email address.
The Select step is obtaining this data
Output:
null,
null,
emsss@example.com
Compose 2 step is me trying to replace the null values with the following expression
null,
null,
emsss@example.com
Compose step is trying to make sure there's no repeats of same value in this case output:
null,
emsss@example.com
What I want to see is just my email and no null values. Ideal output:
emsss@example.com
Can anyone help with this?