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: 
Not applicable

matching values through unique ID

Hi all,

I have the following table coming in;

IDJoin_IDValue
1111X
2111
722212442
4222
224333TEST
6333

If two (or more) IDs have the same Join_ID, I need their Values to be the same.

How can I do this in QV code?

Thanks!

3 Replies
Clever_Anjos
Employee
Employee

LOAD

Join_ID,

concat(Value)

resident your_table

group by Join_ID

Not applicable
Author

hi,

thanks for the help.

question: is it possible to have the final solution in the same format as my initial table using your code above? I need to keep all the fields.

thanks

Not applicable
Author

hi,

thanks for the help.

question: is it possible to have the final solution in the same format as my initial table using your code above? I need to keep all the fields.

thanks