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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
chiru_thota
Specialist
Specialist

TOP N rows from QVD

Hi All,

I need to get first 10 rows from a QVD  into QVW irrespective of data.

Is there any way we can do that ?

Thanks,

Chiru

Labels (1)
1 Solution

Accepted Solutions
Clever_Anjos
Support
Support

FIRST 10

LOAD

*

FROM QVD.qvd(qvd)

View solution in original post

2 Replies
Clever_Anjos
Support
Support

FIRST 10

LOAD

*

FROM QVD.qvd(qvd)

luis_pimentel
Partner - Creator III
Partner - Creator III

Something like this should work:

FIRST 10

LOAD

*

FROM yourdata.qvd (qvd);

or

LOAD

     *

FROM

     yourdata.qvd (qvd)

WHERE

     RowNo() <= 10;