Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
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!