Hi everyone.
I have a DataTable1 already connected to Oracle Table using below code in Items:
'[QA].[Location]'
The problem i have is that i need to do an Inner Join with another table , cause i'm missing some columns.
In another Table called "Addr_t", I have the address components.
If i write this down in Oracle, it's as simple as:
Select a.Id, a.Name, b.Address, b.City, b,Province, b.PostalCode, b.Country
From Location a
Inner Join Addr_t b ON b.Addr_id = a.Addr_id And a.Id = '123456'
Now i'm trying to transpose that into PowerApps but without any good results by doing:
AddColumns(
'[QA].[Location]',
"Address", City","Province","PostalCode","Country",
LookUp(
'[QA].[Addr_t]',
Addr_t = '[QA].[Location]'[@Addr_id] And '[QA].[Location]'[@Id] = "123456"
).City, Province, PostalCode,Country
)
What exactly am I doing wrong? How can i make this wotk?
Thank you for your help