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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

ignore a symbol in a name

i have a field called name witch contains the symbol ' ; ' e.g "Tom Herman; "

i need only the name without the symbol.

thanks

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

purgechar ('Tom Herman;',';')


let me know

View solution in original post

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

purgechar ('Tom Herman;',';')


let me know

tamilarasu
Champion
Champion

Or tyr

Replace('Tom Herman; ',';','')

florentina_doga
Partner - Creator III
Partner - Creator III

left('Tom Herman;',len('Tom Herman;')-1)