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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How create table with only one value by ID ????

Hello everybody !

TABLE1:

ID, VALUE

1, A

1, B

1, C

2, D

2, A

3, X

3, T

How can i create a table with only this:

1 , A

2,  D

3 , X

Many thanks....

Fabien

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Table2:

noconcatenate

Load ID, firstvalue(Value) as FirstValue

resident Table1

group by ID;


talk is cheap, supply exceeds demand

View solution in original post

1 Reply
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Table2:

noconcatenate

Load ID, firstvalue(Value) as FirstValue

resident Table1

group by ID;


talk is cheap, supply exceeds demand