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

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

Limit Qlik Sense Straight table to fetch first 1000 records

Hello,

I have a straight table that is 3 million rows of IDs. Is there a way for me to limit the straight table so that it only pulls in the first 1,000 records?

I know this was possible in Qlikview, but have not found a way to do so in Qlik Sense.

Thank you

1 Solution

Accepted Solutions
sunny_talwar

May be using If statement..

If(RowNo(TOTAL) <= 1000, YourExpression)

View solution in original post

3 Replies
sunny_talwar

May be using If statement..

If(RowNo(TOTAL) <= 1000, YourExpression)

Not applicable
Author

Thank you, this is exactly what I was looking for!

Imbue20
Contributor
Contributor

Hi sunny,

My query is almost the same, i need to show some initial 5k records in table which has nearly 5M records. But once user selects any filter like company code then the records should show according to selection( even the records can be 20k). Once the filter is removed again the table should show initial 5k records.

Please help me out.