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

Data model join

Hi,

How to join the bold to the main table

Location:

left Join(Status_Null_Min)

LOAD Distinct BBITNB as Application_Number,

    BBAACD as Location;

SQL SELECT BBITNB,

    BBAACD

FROM ...00D60.PDBF.CAPP;

Load

LocationNbr as Location,

District_RetailScorecard

FROM

[.xlsx]

(ooxml, embedded labels, table is [Store Locations]) where District_recard <> 'Clece' ;

Thanks..

7 Replies
Anil_Babu_Samineni

May be Join(Location) ??

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
sunny_talwar

What is the main table here? Location or Status_Null_Min?

aarkay29
Specialist
Specialist

left Join(Status_Null_Min) or just Join(Status_Null_Min) .


It would join the main table on the key location which was joined from 00D60.PDBF.CAPP;

Anil_Babu_Samineni

Load

LocationNbr as Location,

District_RetailScorecard

FROM

[.xlsx]

(ooxml, embedded labels, table is [Store Locations]) where District_recard <> 'Clece' ;

Thanks..

You don't have field called District_recard then how you calling the where condition with in the memory??

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
nareshthavidishetty
Creator III
Creator III
Author

Hi ,

The main table is Status_Null_Min.

Thanks..

nareshthavidishetty
Creator III
Creator III
Author

Hi,

It is modified while posting.

Here it is..

Load

LocationNbr as Location,

District_RetailScorecard

FROM

[.xlsx]

(ooxml, embedded labels, table is [Store Locations]) where District_RetailScorecard<> 'Clece' ;


Thanks..

sunny_talwar

May be this:

Left Join(Status_Null_Min)

Load LocationNbr as Location,

     District_RetailScorecard

FROM

[.xlsx]

(ooxml, embedded labels, table is [Store Locations]) where District_recard <> 'Clece' ;