Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
i've a requirement and hopefully someone here can give me a suggestion.
I'm trying to left join adding a column from a qvd file to a another fact table in qvd format too.
eg: calander_week left join Sales fact table
Can anyone suggest how should i accomplish this in scripting?
Thanks in advance.
In script, you can explicity make a left join.
From the QlikView help file:
QVTable:
select * from table1;
left join select * from table2;
From the example above, QVTable will contain every record from table1 and those records will have fields from table2 where they match (using QlikView same-name join logic).
Hope this was helpful,
James