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: 
Qlik_FZ
Partner - Creator
Partner - Creator

Language issue

Hi 

I am loading data from excel sheet which is in arabic format including all the column name in arabic.

Below is my load script. I want to apply where clause to filter data on one column but due to arabic language I am unable to write where clause in the script.

 

LOAD
"الشهر" 
"المستهدف حتى ديسمبر 2021م" 

FROM [lib://DataFiles /Report/Report1.xlsx]
(ooxml, embedded labels, header is 2 lines, table is XYZ) ;

 

Here I want to put the where condition as where  'الشهر <>'المجموع' 

so here المجموع is my filter value الشهر is my column so  I want the text direction to be reversed.

 

Kindly assist

Labels (1)
1 Reply
henrikalmen
Specialist II
Specialist II

Try this:

where [الشهر]<>'المجموع'