Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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)