I want to show a gallery from table A but filter the results based upon a value of Column4 in a related table B.
eg.
TableA
Column1(PK), Column2, Column3(FK)
TableB
Column1(PK), Column2, Column3, Column4
In SQL, I would write
"select * from TableA inner join TableB on TableA.Column3=TableB.Column1 where TableB.Column4=N'X'"
How should I construct the filter formula in Powerapps?