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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
kakani87
Specialist
Specialist

Data Model Issue

Dear All,

I'm having a sale data where in that items they are categorized into TOTAL, ASC, & NEW 3 types

where TOTAL= ASC+NEW

having list of items for ASC and NEW (i.e item_names) so not able to append to fact where it is having item_code

Now  i am doing like this below script can any one help me to correct this as i'm not getting the correct results

ITEM:

LOAD itemcode,

    itemname,

    item_family_code

    //'Total' as flag

FROM

(qvd)

;

//Concatenate(ITEM)

//left join (ITEM)

ITEM_TYPE:

NoConcatenate

//Item_ASC:

LOAD [ITEM NAME_ASC] as itemname,

    'Asc' as flag

FROM

(biff, embedded labels, table is Sheet1$);

//Concatenate(ITEM)

Concatenate(ITEM_TYPE)

//left join (ITEM)

//Item_New_Sales:

LOAD [ITEM NAME] as itemname,

     'New Sale' as flag

FROM

(biff, embedded labels, table is Sheet1$);


Following is the data model


sales_datamodel.png



1 Reply
YoussefBelloum
Champion
Champion

Hi,

unfortunately your question/problem is not clear.

what do you mean by"so not able to append to fact where it is having item_code" ?

If total really = asc+new, you can simply flag and concatenate (why no-concatenate asc and concatenate new ) ?