Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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 ];