Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am also facing same issue. Relational.ISNULL() fails for my job.
I am using below in tmap for mapping 1 column. Still in output its showing null as result.
I just need in output, if column value is null then it should be replaced with blank else column result should be printed.
Relational.ISNULL(row8.columnValue) ? "" : (row8.columnValue + ".")
Thanks in advance.
Could you please double check whether the input value is null or empty string in your case?
Relational.ISNULL(row8.columnValue) ? "null value" :row8.columnValue.equals("")? "empty string": row8.columnValue + "."
Please try below code to verify your input data and let us know your results.
Warm Regards,
Nikhil Thampi
Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved