Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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,
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...
Load your table like
Load
'[Last Name] &' , '&[First Name] as Last&Full
From...
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...