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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
sureshbn21
Contributor
Contributor

Correct the character format

Hi,I am having Customer name listbox.Here customer name field values are getting *,? symbols. how to transformation and symbols (replace) or removing. can you please help me on this.PFB.

Thanks,

BNSuresh.

Labels (1)
3 Replies
MayilVahanan
MVP
MVP

HI @sureshbn21 

Try with PurgeChar() or KeepChar() functon

In script, Like 

PurgeChar(Customer , '*?') as Customer 

or

KeepChar(Customer , 'abcdefghijklmnopqrstuvwxyz ') as Customer

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
sureshbn21
Contributor
Contributor
Author

Hi all,
I have already write the above expersion in list box properties but Before
the loading regarding this how to write the script.
Thanks,
Bnsuresh
MayilVahanan
MVP
MVP

Hi 

Try like this,

Load PurgeChar(Customer , '*?') as Customer , yourfields from yoursource;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.