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

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Problem importing data fron an ODBC source....

Hello ...
I'm importing our sales data through ODBC interface. I have items with code "08020"and the article code "8020", which are all seen with the code "08020", thereby distortingthe data revenue.
How can I fix it??

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hello,

Use Text() function in the load script so it will respect leading zeroes:

Table:LOAD Text(Code) AS Code;SQL SELECT CodeFROM Datasource;


Hope that helps.

View solution in original post

2 Replies
Miguel_Angel_Baeyens

Hello,

Use Text() function in the load script so it will respect leading zeroes:

Table:LOAD Text(Code) AS Code;SQL SELECT CodeFROM Datasource;


Hope that helps.

Not applicable
Author

Ok!!! Everything's ok now. Thank's