Hi. I have joined the 3 attached spreadsheets in Power BI but no joy as it gives me null values in the Acc. Mgr, Product_ID and Region fields not sure why.
I have tried it in SQL using left join, same as in Power BI. Also tried full join but brings more columns, as it should. Thank you
select
*
from [Task.Transactions] as TR
Left join [Task.Account_owner7] as AO
on TR.Partner_ID = AO.Account_Manager
Left join [Task.Price_list10] as PL
on TR.Product_ID = PL.Product_ID
ORDER BY AO.Account_Manager
I have tried it in SQL using left join, same as in Power BI. Also tried full join but brings more columns, as it should. Thank you
select
*
from [Task.Transactions] as TR
Left join [Task.Account_owner7] as AO
on TR.Partner_ID = AO.Account_Manager
Left join [Task.Price_list10] as PL
on TR.Product_ID = PL.Product_ID
ORDER BY AO.Account_Manager