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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
qliktech_uk
Contributor III
Contributor III

Leading zero missing

Hi

In my data field I have the leading 0 missing that I receive in excel and due to this I am unable to get the correct result.

eg:

012344444444 is represented as 12344444444.


How would I join this data?


Thanks.

1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

Try this in your table where you need zvero use  Num(Cola,'000000000000') as NewField

LOAD *,Num(Cola,'000000000000') as NewField;

LOAD * Inline

[

Cola

12344444444

];

View solution in original post

2 Replies
its_anandrjs
Champion III
Champion III

Try this in your table where you need zvero use  Num(Cola,'000000000000') as NewField

LOAD *,Num(Cola,'000000000000') as NewField;

LOAD * Inline

[

Cola

12344444444

];

qliktech_uk
Contributor III
Contributor III
Author

Thanks Anand.