Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Discussion Board for collaboration related to QlikView App Development.
Hi, why are there duplicate rows? I concatenated tables from different sources and 'itemnum' is primary key. The itemnum appears in all the tables and has data for all columns but still duplicates, for example, it has data for all the columns from one table but is null for the other columns in other tables. So there is duplicate like below:
itemnum | site | name | balance | class | code | Group |
---|---|---|---|---|---|---|
1009 | A | D | - | B | - | - |
1009 | - | - | 45 | - | FG | H |
How can I combine everything to one row (distinct itemnum)?
itemnum | site | name | balance | class | code | Group |
---|---|---|---|---|---|---|
1009 | A | D | 45 | B | FG | H |
Thanks.