So I’ve got two drop down filters, one of the drop downs (ddNPS) looks at the Nominal Pipe Size (NPS) column in the ‘Schedule2’ table imported as a data source from excel:
Distinct(Schedule2,NPS)
This works fine.
I want my second drop down (ddSched) to show only the pipe schedules (thicknesses) specific to the size selected in the ddNPS. These thicknesses are documented in the same data source table:
Filter(Schedule2,NPS=ddNPS.SelectedText.Value)
This does not work fine.
ddSched only shows one record in the table. The dropdown should show the entire row of records applicable to that pipe size selected in ddNPS.

I’ve tried to summarise an example, see below – once I select 4” from the ddNPS I want to see 20,40 & 60 in the ddSched drop down.

I’m not sure I’m explaining this very well but I’d appreciate any help nonetheless.