Hi! I'm new in Powerapps and trying to write the formula as much as I can.
I would like to do JOIN table as in SQL query, however Powerapps don't work in this way.
There are two tables.
Result I want : Show the Description from Table2 which Table1.Detail1=Table2.Code.
In my Powerapps, the Description will show at a Label "D1Description" in the Gallery(which data source is Table1).
I do Filter in Label "D1Description" based on another Lable "D1Code"(which is Table1.Detail1)
AND Table2.Detail is "D1".
Error Filter - Text value
But I get this ERROR MESSAGE : "Expected Text Value" always, even I searched and tried other function.
SQL Database examples:
Table1
Column Name : Item Detail1 Detail2
Value Row1 : 001 A Aa1
Value Row2 : 001 B Bb1
Table2
Column Name : Detail Code Description
Value Row1 : D1 A Group 1
Value Row2 : D1 B Group 2
Value Row3 : D2 Aa1 Group 1 Alpha
Value Row4 : D2 Bb1 Group 2 Beta
SQL Query
SELECT Description
FROM Table1 X
LEFT JOIN Table2 Y on Y.Code=X.Detail1 and Y.Detail = 'D1'
Appreciate for your advise and guidances.
Thank you!