Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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

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

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

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


talk is cheap, supply exceeds demand