Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to get duplicates when sending data to excel from table box?


Hi,

I have data in excel where ID in excel have duplicates. I created qvw to load the excel data to match with data from database. I created a table box.  when I am sending te data from table box to excel the duplicate IDs are showing only once. how can I get the duplicates.

Please can anyone suggest me.

Thanks.

1 Solution

Accepted Solutions
JonnyPoole
Employee
Employee

The recommendation is to add a new unique field in the load using say recno()

Load

     recno() as Indentifer,

     *

from <Source>

Then in your table box add all the fields including the indentifier and export to excel.

Table box suppressed duplicates .

View solution in original post

2 Replies
JonnyPoole
Employee
Employee

The recommendation is to add a new unique field in the load using say recno()

Load

     recno() as Indentifer,

     *

from <Source>

Then in your table box add all the fields including the indentifier and export to excel.

Table box suppressed duplicates .

Not applicable
Author

Thanks. It's working.