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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Table Box Hides Duplicate Rows

Hello

Why do table boxes not show dupliate records? I have an application with valid duplicate records and for completeness I really need to show them all in the table. See the example application, attached.

Any ideas?

Thanks.

1 Solution

Accepted Solutions
sparur
Specialist II
Specialist II

Hello James.

TableBox works as ListBox, so it shows only unique values.

If you want to see all rows, you should add in script new field (linenum for example).

Load

...

rowno() as Linenum

FROM ....

and then use it new field in your tablebox.

View solution in original post

2 Replies
sparur
Specialist II
Specialist II

Hello James.

TableBox works as ListBox, so it shows only unique values.

If you want to see all rows, you should add in script new field (linenum for example).

Load

...

rowno() as Linenum

FROM ....

and then use it new field in your tablebox.

sparur
Specialist II
Specialist II

see in my example