I have been working with Power Apps for a few days and one of the task I have been set is to filter a table by another table.
At the moment I have created a dual search box using this code , which works fine , but this is from the Master_List
Filter(Master_List,StartsWith(Title,account_prof_search_box.Text)||(StartsWith(field_1,account_prof_search_box.Text)))
What I also want to add , is a drop down filter from column field_10 from Data Source Master_Profiles.
The tables are linked by the Title Field
I want the Master_Profiles to filter the Master_List , so if the value from field_10 is selected , only show the data in the Master_List with the matching Titles. Is this possible