Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Thank you very much and br,
Oliver
May be try loading it like this
Num(Replace(LTrim(Replace(item_id, '0', ' ')), ' ', '0')) as item_id
@sunny_talwar it's working, thank you!