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: 
ALI4
Contributor
Contributor

DATA EQUALIZATION

 
 

Greetings,

I am new on QLIK and I have one task to do.

I have two excel files 

1) POD

2) TAG

In two files one data is common that is (m3) of water.

 

For suppose: POD=TAG=m3, so what code I have to put to analyze for suppose.

 

when I analyze m3 with TAG only it gives me same result as when I analyze it with POD. In simple words I want to generate script that equalize TAG and POD to m3.

 

I am attaching the example of files. Please help me in this regard

Thankyou

1 Reply
ogster1974
Partner - Master II
Partner - Master II

looks to me your join key is a composite of m3|date|COMUE so try something like.

Result:

Load

*

FROM TAG

;

JOIN (Result)

LOAD

m3, date, COMUE

TAG AS COD_POD

FROM POD

;