Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Replace from value of other column

 

I'm starting using the Talend big data.

I wanna replace the nulls of one column by the value of the other?

It's this possible?

0683p000009LtRR.png

Regards,

Vitor Sousa

Labels (1)
1 Solution

Accepted Solutions
manodwhb
Champion II
Champion II

you can do in tMap by writing below way.

 

row1.lname==null? row1.fname : row1.lname

View solution in original post

4 Replies
manodwhb
Champion II
Champion II

you can do in tMap by writing below way.

 

row1.lname==null? row1.fname : row1.lname

Anonymous
Not applicable
Author

Thanks!
TRF
Champion II
Champion II

Hi,

Suppose the flow before your tReplace is called row74 (like in the following capture), you can refer to the desired column your want to get to replace "NULL" or null values in the source column.

Here, the target column is called newColumn1 and the source is newColumn.

This make the job:

0683p000009LtKR.png

In my example the input data are the following:

0683p000009LtM9.png

And the result is:


0683p000009LtRq.pngHope this helps.

Anonymous
Not applicable
Author

I will try. But thanks for the help.