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: 
soha1902
Creator
Creator

Similar Representation


Hi All,

In my database from where I am fetching Names. Names are coming in different format for some names after first name space is available for some names its not availabe. So what I want to achieve if space is not present after comma(,) then it will add automatically during load. Please see below image:

space.png

1 Solution

Accepted Solutions
mdmukramali
Specialist III
Specialist III

!Dear ,

Use the replace function

Replace(Replace(A,', ',','),',',', ') as A,

kindly find the attached file.

Thanks,

Mukram

View solution in original post

2 Replies
mdmukramali
Specialist III
Specialist III

!Dear ,

Use the replace function

Replace(Replace(A,', ',','),',',', ') as A,

kindly find the attached file.

Thanks,

Mukram

soha1902
Creator
Creator
Author

Thanks a lot....