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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
souadouert
Specialist
Specialist

Load script row

how to retrieve row 1 from a table in a script-----> table[3], and assign columns to variables



3 Replies
Anil_Babu_Samineni

May be this?

First 1 Load * from Table3;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
its_anandrjs
Champion III
Champion III

This one

LOAD *

From Table

Where RowNo() <1;

This will load first row only.

sunny_talwar

RowNo() < 1 won't load anything... did you miss an equal Anand?

RowNo() <= 1 or RowNo() = 1?