I have two tables in my base - Organisation (Fields: Name, Company Tag, Industry tag, location, Okay to fund) Funder (Fields: Name, Company tag, Industry tag) My interface needs to do the following:
- Select a funder from the investor table.
- Select the location country from the organisation table. I want to provide the user the flexibility to choose a location.
- Match the company tag from the funder table to the company tag in the organisation table.
- Match the industry tag from the funder table to the industry tag in the organisation table.
- Show me a list of organisations for the above selected criteria sorted by okay to fund as yes.
I have tried building an interface where I can select a funder to show the two tags.
Now within each tag - I can show the list of organisation from the org table and the funders from the funder table. However I am kind of stuck with sorting to show only the okay to fund orgs and based on location. I want to understand how to use a filter that shows the results. Would I need to use a button or an automation? Or do I need to have multiple pages for this type of search UI?