Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to add rows into existing fields?

I have a table called Employee. It has the following load statement:

LOAD DepartmentName,
EmailAddress,
EmergencyContactName,
EmergencyContactPhone,
EmployeeBusinessEntityID as SalesPersonID,
EndDate as SalesPerson_EndDate,
FirstName as SalesPerson_FirstName,
LastName as SalesPerson_LastName,
Title;
SQL SELECT *
FROM Employee;

I would like to add 291 under the Field SalesPersonID, John as SalesPerson_FirstName, Adams as SalesPerson_LastName, and Sales Representative as the Title.

Could anyone please help?

1 Solution

Accepted Solutions
Jason_Michaelides
Luminary Alumni
Luminary Alumni

Under your load script above:

Concatenate (Employee)

Load * Inline [

SalesPersonID,SalesPerson_FirstName,SalesPerson_LastName,Title

291,John,Adams,Sales representative

];

Jason

View solution in original post

2 Replies
Jason_Michaelides
Luminary Alumni
Luminary Alumni

Under your load script above:

Concatenate (Employee)

Load * Inline [

SalesPersonID,SalesPerson_FirstName,SalesPerson_LastName,Title

291,John,Adams,Sales representative

];

Jason

Not applicable
Author

i created an excel sheet and concatenated it. But thanks for your input...