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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to get the values of a specific line in a table?

Hello community,

I have a table that has multiple lines.

I loaded from an instruction LOAD.

My goal is to load the values of a specific line items in the text objects that I put on my sheet.

I do not know how to retrieve values from a specific line.

Thank you for your help.


5 Replies
stephencredmond
Partner - Specialist II
Partner - Specialist II

Hi,

Have you looked at the FieldValue function which will return the value in a field based on load order:


=FieldValue('Player', 2)


Regards,


Stephen

Not applicable
Author

The name of my field is : [Désignation de l''entreprise]

How i would use the FIELDVALUE statement?

Not applicable
Author

The name of my field is : [Désignation de l''entreprise]

I have done this :

FieldValue([Désignation de l'entreprise], 2) ;

FieldValue('[Désignation de l''entreprise]', 2);

but it's not worked. Please what am i correct??

stephencredmond
Partner - Specialist II
Partner - Specialist II

Hi,

Almost - because you have to use the text qualifier in the name, you don't need the square brackets. Your apostrophe complicates things a little:

=FieldValue('Désignation de l' & chr(39) & 'entreprise', 2)

Stephen

Not applicable
Author

Thank you Sir REDMOND