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

Announcements
Data Works for AI is here - Join the discussion and enter to win a pair of Qlik kicks: Join the Conversation!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Viewing Special Characters in Qlikview

I have a field INFO in database(Big data) that contains special characters.while taking substring from the field the values are not populated correctly.Not sure if some characters are trimmed.How do i view the special characters in Qlikview to analyse?

Labels (1)
3 Replies
ahaahaaha
Partner - Master
Partner - Master

Hi,

May be try use function Ord()?

Not applicable
Author

Hi Deepika,

May be try use function keepchar().

Keepchar(string,keep_chars)-> It will give the keepchars

Example : Keepchar('fdf^$%&^%ghgfhuj%^$^%$**(%@@','~!@#$%^&*()')--> It will give ^$%&^%%^$^%$**(%@@

Not applicable
Author

Hi Deepika,

test:

load PurgeChar('a@b#c&r@','@#$%^&*()') as newfield

Resident data;

=> It returns other than special characters. output is: abcr

     * data is previously used table.

test2:

load KeepChar('a@b#c&r@','@#$%^&*()') as newfield1

Resident test;

=> It returns special characters which are present in your data. output is : @#&@