Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
microwin88x
Creator III
Creator III

Delete a Space from Value

Hello,

I have a field with NAME where I could get from data:

JOHNSON , JACK (with space after lastname)

JOHNSON, JACK

Is there any way to use a function in JOHNSON , JACK in order to delete that space?

Thank you!

2 Replies
Anonymous
Not applicable

Try

replace(NAME, ' ,', ',')

maxgro
MVP
MVP

replace function

=replace('JOHNSON , JACK', ' ,', ',')