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: 
Oliver1
Contributor III
Contributor III

Qlik Sense is adding zeros to importet values

Hello everybody,

Qlik Senes is adding zeros to some of my imported values, I have an example below which shows the item_id. The item_id should only be 7 or 8 digits long. How can I prevent this?

The source is a csv file.

Oliver1_0-1591274677029.png

Thank you very much and br,

Oliver

2 Replies
sunny_talwar

May be try loading it like this

Num(Replace(LTrim(Replace(item_id, '0', ' ')), ' ', '0')) as item_id
Oliver1
Contributor III
Contributor III
Author

@sunny_talwar  it's working, thank you!