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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Last Name, First Name

Hi,

In my script I have:

Load

     [Last Name],

     [First Name]

From...

Is there a way to join the fields so that the data would appear as "Last Name, First Name" in a list box on the dashboard?

Thank you,

Labels (1)
1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

if you need exactly same as your output that is "Last Name, First Name"

Load

     [First Name],

     [Last Name],

     Chr(34)&[Last Name] &' , '&[First Name]&Chr(34) as Last&Full

From...

View solution in original post

2 Replies
its_anandrjs
Champion III
Champion III

Load your table like

Load

     '[Last Name] &' , '&[First Name] as Last&Full

From...

its_anandrjs
Champion III
Champion III

if you need exactly same as your output that is "Last Name, First Name"

Load

     [First Name],

     [Last Name],

     Chr(34)&[Last Name] &' , '&[First Name]&Chr(34) as Last&Full

From...