Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
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

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

FIRST 10

LOAD

*

FROM QVD.qvd(qvd)

View solution in original post

2 Replies
Clever_Anjos
Employee
Employee

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;