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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to get all the rows in Qlikview extension object script?

Hi,

I am using following code to get the no of rows and columns in my script.js file and further for loops will extract the data.

var No_of_Col = this.Data.Rows[0].length;
var No_of_Row = this.Data.Rows.length;

I am getting No_of_Col = 3 which is correct, but No_of_Row = 450(wrong value) which is actually 2013.

and for loops will fetch only 450 records, if i hardcore No_of_Row = 2013 then my dashboard fails to load.

how to get all(2013 records) the rows?

Thanks,

Tarun

0 Replies