Hello @fadel13
First you are not doing a search but a filter. They are different functions
Let me explain Search allows you to search the table and you can tell it not only to search for you in one or more attributes of the table, for example in your table you could search using textsearch in the fields title, name, etc.
Now if you decide to use a filter and search by more than one parameter, it is most recommended that you have more than one field to use as a textsearch and this allows you to do a double filter, in case you want to do it with the same attribute you must decide what happens when the first filter returns values (and you may need to create a collection to filter from), and then filter the second part
I recommend, depending on what you need, to use Search for searches and Filter only when you need to filter by one parameter or more.
An example of a filter for more parameters would be
Filter(Filter(Expenses; 'Expenses (Views)'.'Draft Expenses');Employee.'Full Name' = UserVar.FullName)
Search(Expenses;text;"ine_descripcion";"ine_Employee")
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
You can accept more than one post as a solution