Hello Peruka, Sikander reddy
Please try the below expression.
iif(isNull(field1) == false(), field1, iif(isNull(field2) == false(), field2, null()))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am checking if a field(column) has data that is not NULL.
How do i use NOT ISNULL(field1) in derived transformation ?
I want to convert following code in derived transformation
example: iif( not isNULL(field1), field1, iif( not isnull(field2), field2, NULL)
Hello Peruka, Sikander reddy
Please try the below expression.
iif(isNull(field1) == false(), field1, iif(isNull(field2) == false(), field2, null()))