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: 
Not applicable

Import without clear 0 on left

Dear all,

i have a table that first column is a postal code (Fron diferrent countries, then lenght is variable)

I want to import to a table without clear chars 0 on left.

How can i do that

Example

Table 1

00080 -> imports 80 and I want 00080

00000080 -> Imports 80 and I want 00000080

Thanks for your help

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hello Jordi,

As they are not numbers (because you are not going to operate with them) try the following in your loading script:

Text(Postal Code) AS Postal Code
It will leave zeroes in the values.

Regards.

View solution in original post

1 Reply
Miguel_Angel_Baeyens

Hello Jordi,

As they are not numbers (because you are not going to operate with them) try the following in your loading script:

Text(Postal Code) AS Postal Code
It will leave zeroes in the values.

Regards.