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

load add lines

Hey guys

im sure you can help me pretty fast on this

I have a table which shows a referenc

Dim_PimItem:

LOAD     %Item,

        %BulkItem

From

$(dirQVD)_Generic\Dim_PimItemData.qvd

(qvd)

;

%BulkItem %Item
56207584236968
56207584237583
56207584244000

Now i would like to add the %bulk to %Item as reference, the result should look like this

%BulkItem %Item
56207584236968
56207584237583
56207584244000
56207585620758


how can be done this?

many thanks for help

rgs

1 Solution

Accepted Solutions
sunny_talwar

May be like this:

Dim_PimItem:

LOAD     %Item,

        %BulkItem

From

$(dirQVD)_Generic\Dim_PimItemData.qvd

(qvd);

Concatenate (Dim_PimItem)

LOAD DISTINCT %Item,

          %Item as %BulkItem

Resident Dim_PimItem;

View solution in original post

2 Replies
sunny_talwar

May be like this:

Dim_PimItem:

LOAD     %Item,

        %BulkItem

From

$(dirQVD)_Generic\Dim_PimItemData.qvd

(qvd);

Concatenate (Dim_PimItem)

LOAD DISTINCT %Item,

          %Item as %BulkItem

Resident Dim_PimItem;

Anonymous
Not applicable
Author

Hey Sunny

it works, just need to change from

Concatenate (Dim_PimItem)

LOAD DISTINCT %Item,

          %Item as %BulkItem

Resident Dim_PimItem;


To

Concatenate (Dim_PimItem)

LOAD DISTINCT %BulkItem,

          %BulkItemas %Item

Resident Dim_PimItem;

Many thansk