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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How can I export all my rows to Excel ?


Hi,

I have loaded a table of 90 rows into QV. There are duplicate rows in this data set.

However, when I export the records to Excel, it ignores the duplicates and doesn't export them to the spreadsheet.

How can I get round this problem and ensure that ALL records (duplicates or otherwise) are copied over to the spreadsheet ?

Thanks

MV

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Add a rownumber field in the script and add that new field to the table box object you want to export too. Otherwise Qlikview will simply export what's shown in the table box object.

LOAD *, rowno() as RowNumber

from ...somewhere...;


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Add a rownumber field in the script and add that new field to the table box object you want to export too. Otherwise Qlikview will simply export what's shown in the table box object.

LOAD *, rowno() as RowNumber

from ...somewhere...;


talk is cheap, supply exceeds demand
ramasaisaksoft

Hi Maureen,

     I also suggested Wassenaar advice.

Because when u add one more column in that tables it shows (rowno() function )shows number of records in that table,So when u export u r Table to Excel it shows all values and data .

Not applicable
Author

That's great and a good way of displaying EVERY record in a datafile.

Many thanks.