Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
mparker123
Creator
Creator

create multiple fields from one

Hello All,

In my script i have the below expression. I am pulling this information in through an excel file. First_Name and Last_Name are filed names. I am joining them to make Full_Name. Is there a way to keep the below expression but also make Last_Name it's one field so i can sort by it?

FIRST_NAME & ' ' & LAST_NAME as Full_Name

2 Replies
Or
MVP
MVP

Load FIRST_NAME, LAST_NAME, FIRST_NAME & ' ' & LAST_NAME as Full_Name

From (Whatever);

Anil_Babu_Samineni

May be load excel first and Add one more field called

Load FIRST_NAME,

        LAST_NAME,

        FIRST_NAME & ' ' & LAST_NAME as Full_Name

From Excel;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful