Hi,
I have 3 tables.
1) The CustomerList, has customer and country columns
2) The ProviderList has provider and country columns
3) The customer-provider list has customer and provider columns and there is no country column.
I have 3 Listboxes
ListBox1 gets data from the ProviderList. connected a textinput (as used search box) and created using
Distinct(Filter(ProviderList, StartsWith('Provider Name', TextInput2.Text)), 'Provider Name')
ListBox2 gets data from the ProviderList. connected to the ListBox1 and created using
Distinct(Filter(ProviderList,'Provider Name'=ListBox1.Selected.Value),'Provider Country')
Now I want to create ListBox3 and need to see Customers that work with provider which is selected in ListBox1 and in the specific country which is selected Listbox2.
I used "in" to filter the new Listbox.
Filter(CustomerLists,'Customer Country'=ListBox2.Selected.Value And 'Customer Name' in Filter(Customer-ProviderList,'Provider Name'=ListBox1.Selected.Value).'Customer Name')
hwoever, that time get delegation error. how to fix it?