Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How many distinct values?

How many distinct values will we have with the following script in QlikSense? LOAD * INLINE ( Test 1.00 1.0 1.000 1 );


Can anyone please tell me what is the answer for this

1 Reply
OmarBenSalem

U'll have 1 value.

If u want to have 4 ; u'll have to change it as follow:

LOAD text(Test) as Test INLINE [

Test

1.00

1.0

1.000

1 ];