Hi, I am trying to join 2 tables in powerapps and trying to get the true inner join data. below is my sample data -
suppose user placed an order with multiple products, I want to join 1 record from Order with Multiple records from product table.
Table Orders -
OrderID, OrderDate
1, 2018-01-21
2, 2017-01-31
Table products -
ProductName, orderID
ABC, 1
CDE, 1
SDW,1
LOJ,2
Final Result -
Order ID, OrderDate, ProductName
1,2018-01-21,ABC
1,2018-01-21,CDE
1,2018-01-21,SDW
2, 2017-01-31, LOJ
I tried Addcolumns using lookup but it only brings one value, is it possible in powerapps or do I need to go to View route?
Thanks in Advance