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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
narender123
Specialist
Specialist

Same rows not showing in Straight table

Hi All,

I have 2 tables and both are joined with each other via association join by default.

When i load the data and create straight table then some of the rows are not showing .The reason behind this is :

Rows with same data are not showing in table means same repeating rows showing only 1 time.

But in oracle data all rows are showing independent of same or different rows.

Please tell me how to show all rows, independent of similarity between rows.

Thanks,

Narender

3 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Create a record number in the script when you load the data:

LOAD

     *,

     RecNo() as RecordNumber

FROM

     ...somewhere...

     ;

Then use that RecordNumber field as dimension in your straight table.


talk is cheap, supply exceeds demand
narender123
Specialist
Specialist
Author

Thanks Gysbert.

I used it and its working.

kamal_sanguri
Specialist
Specialist

Nice trick..