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

Announcements
Save an extra $150 Dec 1–7 with code CYBERWEEK - stackable with early bird savings: Register
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