Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have two tables like below
Table1:
LOAD date(Posting_Month, 'MM-YYYY') as Period,
left(Plant,2) as Country,
Plant,
Modality,
Part_Type as [Part Type],
System_Code as [System Code],
NormConsumption as Consumption
From
[..\Master.qvd]
(qvd) where Match(Contract_Type_Group,'Contract Covered','Warranty') and Posting_Month >= Date#('01-2017' , 'MM-YYYY');
Table2:
LOAD date(Period_Start_Date, 'MM-YYYY') as Period,
left(Plant,2) as Country,
Plant,
System_Code as [System Code],
Part_Type as [Part Type],
Entitlement_Count as [Install Base]
FROM
[..\Table.qvd]
(qvd) where Match(Contract_Type_Group,'Contract Covered','Warranty');
Now when i use concatenate i am getting current value for Install Base but when i select any modality data i am getting as 0. But when i do a left join or mapping the value is changing.
Can you please tell me what to use and how to solve it.
Thanks,
Bharat
When contatenate this 2 tables the 1st table has no values for [Install Base] and the 2nd table has no values for Modality.
This is the reason for getting 0 Install base when select a modality
Albert