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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to format the name

This might be a easy pick, but i am having hard time using string functions.

How can i make the name from Aaron, Jacobs to Aaron Jacobs all it needs to be done is get rid of the comma between last name and first name assuming the column name is Name(field)?

2 Replies
shree909
Partner - Specialist II
Partner - Specialist II

Hi ir ur are using in the script   Try this

Load

FirstName,

Lastname,

FirstName &'  '&Lastname AS  FullName

from ....

or  you can use the replace function

Replace(Name,',',' ')  As FullName

sushil353
Master II
Master II

try to use purgechar function:

purgechar(Name,',') as FullName

HTH

Sushil