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: 
gerrycastellino
Creator III
Creator III

question on reading contents

XX:

REPLACE LOAD *

INLINE [Code, Value

                                1, 'A'

                                2, 'B'

                                3, 'C'

                                4, 'D'                  

                                ];

assuming I have a table as above (data island), how would I read say the first record into a text object ?

Gerry.

1 Solution

Accepted Solutions
maxgro
MVP
MVP

try

=FieldValue('Code',1) & ' ' & FieldValue('Value',1)

View solution in original post

1 Reply
maxgro
MVP
MVP

try

=FieldValue('Code',1) & ' ' & FieldValue('Value',1)