Here is an example formula that combines your existing formulas:
Filter( If(SearchBox_1.Text="", LastN('Engineering Simulations', 1000), Search('Engineering Simulations', SearchBox_1.Text, "CustomerName", "InquiryNumber", "ProductItem", "PPM", "CPM")), 'Platform List'.Value = Dropdown3_1.Selected.Value && 'Infeed Functions'.Value = Dropdown4_2.Selected.Value && 'Main Functions'.Value = Dropdown4_3.Selected.Value )
This formula first checks if the SearchBox_1 is empty or not. If it's empty, it displays the last 1000 items from the 'Engineering Simulations' SharePoint list. Otherwise, it filters the list based on the search criteria using the Search function.
Then, the formula filters the same list based on the selected values in Dropdown3_1, Dropdown4_2, and Dropdown4_3 using the And operator. Replace 'Platform List', 'Infeed Functions', and 'Main Functions' with the actual names of the lookup fields in your SharePoint list.
I hope this helps! If you find this answer helpful, please consider giving it a thumbs up and mark it as the solution.