Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
sagarjagga
Creator
Creator

Qlik is eliminating different string with almost same chars

Hi All,

In data base i have 2 codes - 501 and 501.00000 but when loading this code through SQL select in qlik , qlik is returning only 501.00000(it is eliminating 501).

can you please help me with that

1 Solution

Accepted Solutions
marcus_sommer
MVP
MVP

You need to enforce a string-interpretation of this field, for example with:

load text(code) as code;
sql select code from source;

- Marcus

View solution in original post

1 Reply
marcus_sommer
MVP
MVP

You need to enforce a string-interpretation of this field, for example with:

load text(code) as code;
sql select code from source;

- Marcus