Hello All,
I'm relatively new to PowerApps and stuck creating a filter formula - hoping someone here can help me out.
I'm using 2 SQL Connectors to connect to data in 2 related tables. Table A (we'll call it) is the Equipment Master table. Table B contains a record of all rental contracts for a piece of EQ. The link between the tables is a one to many relationship from A to B on Stock #. There are over 6,000 contract records in total, and this is likely to increase dramatically, so I would like to avoid using collections.
My app has a filter screen that contains 6 different combobox selectors all filtering on different data from tables A and B. Once the user selects the necessary filters, they will be taken to an "Equipment List" gallery screen (based on Table A) which shows all stock #s that fit their selected filters.
The part I'm stuck on is how to incorporate fields from Table B in the filter for the Equipment List screen based on Table A data while still keeping the 'Items' function delegated for the EQ List Gallery? The closest I've gotten is the below basic example, however the "in" function is not delegated in this context for SQL Server connectors.
Filter('[dbo].[vf_AAEquipmentList]', StockNumber in Filter('[dbo].[vf_AAContractDetails]', ContractType = "RNT").StockNumber)
Filter Screen

Equipment List
