@zapperrr
Well...I understand that!!
So, the condition specifically looked for is going to be broken down like this:
textInputSearch.Text in User - what is in the text must be in the User field or the text is blank
SInput.Text in 'Serial Number' - what is in the text must be in the serial number, or the text is blank
ModelInput.Text in Model - what is in the text must be in the Model, or the text is blank
IsBlank(Dropdown1.Selected.Result) || 'Equipment Type'.Value = Dropdown1.Selected.Result -
The dropdown selection Result column is blank, OR the equipment type column Value is equal to the selection result column.
IsBlank(Dropdown1_1.Selected.Result) || Location.Value = Dropdown1_1.Selected.Result -
The dropdown selection Result column is blank, OR the Location column Value is equal to the selection result column.
IsBlank(User) || IsBlank('Serial Number') || IsBlank(Model) -
User is Blank or Serial Number is Blank or Model is blank
NOTE: ALL of the above conditions must result in a true in order for the record to be returned.
Perhaps I am still misunderstanding exactly what you are looking for. So, I spelled out the above conditions and, don't forget, they ALL must be true in order for the record to be returned.
Please correct me if I am not getting exactly what you want.