Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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

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

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.