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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Alpha Content Converts to Numeric

Hi All,

I'm encountering an issue during a load from an AS/400. The data type in the AS/400 for a Ship-to code is Alpha in many cases those codes can be numeric values however when loaded to QlikView I'm getting strange results. See chart below:
              

As  Represented in the AS400As Represented
  in QlikView
100000001
0000000100000001

Any ideas on how to suppress this conversion and retain the original data representation?

Rich

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

Try a text(FIELD), like in

LOAD

     text(FIELD) as FIELD,

     ...

View solution in original post

2 Replies
swuehl
Champion III
Champion III

Try a text(FIELD), like in

LOAD

     text(FIELD) as FIELD,

     ...

Not applicable
Author

Thank you.