Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am getting data from two tables. One contains current cube values and other has previous cube. Both has same columns as A, B , C.
When i run script as qlikview behaves it will automatically join tables on all the 3 columns. But its not displaying values when Column C is missing on some values in previous cube.
For modelling it properly should i use composite key or i should use some Join?
use NoConcatenate statement in script in middle of the table
Exp:
TabA:
A
B
C
From datasoure...;
NoConcatenate
TabB:
A
B
C
From datasoure...;
You can also use, left keep or right keep or inner keep based on your requirement, just replace join by keep to avoid concatenation
Thanks..just one thing addition to it..lets say i want to join these two tables on C column then what to be done?
I don't need join on other two columns
Just rename these columns in of the tables by using as
Try like this Exp:
TabA:
A
B
C
From datasoure...;
Concatenate(C)
TabB:
A
B
C
From datasoure...;