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: 
Not applicable

Field in load script shall contain Euro symbol - but corrupted

Hi,

I try to add a field to my table that sorts money values into categories:

if(sum(OLI_TMP.TCV_REPORTED) < 0, 'TCV < 0€',if(sum(OLI_TMP.TCV_REPORTED) >=0 and sum(OLI_TMP.TCV_REPORTED) < 200000, 'TCV 0€ - 200.000€', 'TCV > 200.000€')) as OPP_TMP.TCV_REPORTED_GROUP


Problem is, that the euro signs are not displayed correctly, most likely because of the char set. How can I change this?


euro_sign.jpg


Thanks.

1 Solution

Accepted Solutions
maxgro
MVP
MVP

try with chr, in my pc I get € with

load

chr(8364) as euro

autogenerate 10;

I got it in a textbox with

=ord('€')

View solution in original post

1 Reply
maxgro
MVP
MVP

try with chr, in my pc I get € with

load

chr(8364) as euro

autogenerate 10;

I got it in a textbox with

=ord('€')