Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
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 ];