Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Inline Load of unicode character

Hi

Is possible to load unicode characters via an Inline Load ?

In a Text Box I can use

= chr( num#( '2196', '(hex)') )

To display

The end result I am trying to achieve is to use ApplyMap to map various text values to various unicode characters.

Best Regards,     Bill

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Something like this should work

MAPPING LOAD Text, chr(num#(Code,'(hex)') ) as Code  INLINE [

Text, Code

A, 2196

];

View solution in original post

2 Replies
swuehl
MVP
MVP

Something like this should work

MAPPING LOAD Text, chr(num#(Code,'(hex)') ) as Code  INLINE [

Text, Code

A, 2196

];

Anonymous
Not applicable
Author

swuehl

Brilliant !!

Just what I need.

Many Thanks,      Bill