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

Announcements
Learn how to migrate to Qlik Cloud Analytics™: On-Demand Briefing!
cancel
Showing results for 
Search instead for 
Did you mean: 
EnriqueLDE
Contributor II
Contributor II

Error: The method append(Object) in the type StringBuilder is not applicable for the arguments ()

Hello,

I'm using an Excel (all the data are String variables) trying to merge rows with replicated values. For example, if I have 5 rows with the word Monday i want Talend to merge this information in a single row setting the same text (I'm using tDenormalize for this). This is the job:

 

0683p000009M2Xy.png

 

After executing job I get this error:

 

0683p000009M2V5.png

 

Code:

0683p000009M2Y3.png

I would like to know why this error in the generated code appears. Thanks!

 

Labels (2)
1 Solution

Accepted Solutions
akumar2301
Specialist II
Specialist II

add a delimiter in tDenormalize. This should work.

View solution in original post

4 Replies
akumar2301
Specialist II
Specialist II

add a delimiter in tDenormalize. This should work.
EnriqueLDE
Contributor II
Contributor II
Author

Thanks @uganesh, that was the problem! 2 questions:

-If my Excel has null cells, how do i delete the default "null" value I get in the output? 

-I read tDenormalize can change input order. Is there any component or way to order the data again like the original order?

Thanks again!

akumar2301
Specialist II
Specialist II

Looks like you are trying to remove duplicated from file. You could use tUniqRow also.
I assume , tUniqRow will maintain the order of input .

EnriqueLDE
Contributor II
Contributor II
Author

Perfect, thanks @uganesh !