Hi @marcy_pi,
Do you want to display all the records if you select "All" option from the dropdown?
First of all, add the "All" option to the dropdown list. To achieve this, you should create a collection to add the All option, you could create the collection clicking a button or set the OnVisible of the current screen:
ClearCollect(colPartNumber,{Result:"All"},Distinct(Table5, 'PART NUMBER'))
Then populate the dropdown part number with the colPartNumber, there will exist "All".
Set the Items property of the Gallery as below:
If(Dropdown_PartNumber.Selected.Result="All",Table5,Filter(Table5,'Part Number'=Dropdown_PartNumber.Selected.Result))