I have a Master_List table and Master_Profile table , which are matched by the AccountID field.
I currently have this code working for filters in text boxes , just for the Master_List Table
SortByColumns(Filter(Master_List,StartsWith(Title,search_carrier_code.Text)
,(StartsWith(field_1,search_carrier_name.Text))
,(StartsWith(field_4,search_region.Text))
,(StartsWith(field_5,search_country.Text)))
,"field_1",Ascending)
What I need to do is include another filter called rep name , which is from the Master_Profile table. This table has multiple matching rows all linked to the Master_List by Account ID. I want to add another textbox called rep , which when the user types in the box , it will filter the Master_List , where all of the ID's in the Master_profile Table that matches the rep name , will be be selected in the Master_List