Hi @AtlantisFury ,
Could you please share a bit more about the Filter formula you used in your app?
Do you want to filter your Accounts table records from your Saleforce based on specific Opportunity IDs?
Based on the needs that you mentioned, I afraid that there is no filtered column within your Accounts table to compare with the passed Opportunity ID value.
As an alternative solution, you could consider get all related account names based on the passed Opportunity ID value from your Opportunity Table, then filter your Accounts Records based on the filtered related account names.
I have made a test on my side, please consider take a try with the following workaround:
Set the Items property of the Gallery to following:
Filter(
AccountsTable,
'Account Name' in Filter(
OpportunitiesTable,
OpportunityID = "Specific Opportunity ID value passed from another screen"
).'Account Name'
)
Note: The first 'Account Name' represents the Text column in your Accounts Table. The second 'Account Name' field represents the LookUp column in your Opportunity Table.
If there is a sub-property under the 'Account Name' LookUp column, please modify above formula as below:
Filter(
AccountsTable,
'Account Name' in Filter(
OpportunitiesTable,
OpportunityID = "Specific Opportunity ID value passed from another screen"
).'Account Name'.Sub-property
)
Note: The 'Account Name' value (from your Accounts Table) is stored within the Sub-property under the 'Account Name' LookUp column (from your Opportunity Table).
Best regards,