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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Load a table field twice from a table with different names

Hey guys,

is it possible in qlikview to ETL a table field twice from a table with different names, so they could be joined with two other different tables?

Many thanks and regards,

4 Replies
MK_QSL
MVP
MVP

Yes it is possible..

Like

Load

     CustomerID,

     InvoiceDate,

     InvoiceAmount,

     CustomerID as CustID

From TableName......

fkeuroglian
Partner - Master
Partner - Master

Yes you can

Load Field1

        Field2

        Field3

        Field1 as AnotherField

from tableA;

Good Luck

Fernando

SunilChauhan
Champion II
Champion II

one field can be used several time in qlikview only thing you need to rename it

otherwise it will give unique field error.

Load

Region,

Sales*12/100  as discount,

Sales as RegionalSales

from Path

even you could rename the renames field.you can write as many as Load statement on load . like belw

Load *,

RegionalSales as TotalRegionalSales;

Load

Region,

Sales*12/100  as discount,

Sales as RegionalSales

from Path

Sunil Chauhan
Not applicable
Author

ya you can

Load EmployeeID,

         EmployeeID as ID,

         EmployeeName

from table;