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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
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

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try a text(FIELD), like in

LOAD

     text(FIELD) as FIELD,

     ...

View solution in original post

2 Replies
swuehl
MVP
MVP

Try a text(FIELD), like in

LOAD

     text(FIELD) as FIELD,

     ...

Not applicable
Author

Thank you.