Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
Hi,
May be try use function Ord()?
Hi Deepika,
May be try use function keepchar().
Keepchar(string,keep_chars)-> It will give the keepchars
Example : Keepchar('fdf^$%&^%ghgfhuj%^$^%$**(%@@','~!@#$%^&*()')--> It will give ^$%&^%%^$^%$**(%@@
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 : @#&@