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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
stekol61
Creator
Creator

Remove unwanted characters

Hi!

I'm loading an object from a database with names that start and ends with "

What is the best way to remove ". E.g "altea" -> altea

In the extract script or in the application?

rename.PNG

Labels (1)
2 Replies
sunny_talwar

May be try this

PurgeChar(Conv_Client, Chr(34)) as Conv_Client

sunny_talwar

Or use Replace

Replace(Conv_Client, Chr(34), '') as Conv_Client