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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
ali_hijazi
Partner - Master II
Partner - Master II

help in column value

Hello

we have a table in SAP for Warehouses

the issue is that we have 2 codes 1, and 01

when I read this table in Qlik 1 and 01 are considered the same

(check below)

my load statement is as follows:

Load WhsCode, WhsName

or

Load text(WhsCode) as WhsCode, WhsName....

but I get the following:

inventory_balance_2.png

inventory_balance.png

How can I make Qlik differentiate between the two codes?

I can walk on water when it freezes
1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

You need to explicitly convert the values to text directly in the load:

LOAD

     Text(WhsCode) as WhsCode,

     ...other fields...

     ;

SQL SELECT * FROM ...sap_table... ;


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

You need to explicitly convert the values to text directly in the load:

LOAD

     Text(WhsCode) as WhsCode,

     ...other fields...

     ;

SQL SELECT * FROM ...sap_table... ;


talk is cheap, supply exceeds demand
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Can you share the parts of the script that loads this field?


talk is cheap, supply exceeds demand