Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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

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

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

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

- Marcus