Sort(Filter('MySharepointList',
//Filter by ddCompleted value
Completed.Value=ddCompleted.Selected.Value,
//Then filter by ddName if All is not selected
ddName.Selected.Result="All"||AssignedTo.Value=ddName.Selected.Result),ID,If(SortAscending,Ascending,Descending))
This is my current Gallery code but I added a text input box called "Searchbox" and would like to incorporate it to my code.
Watching Shane Young's video my search code would be
Search('MySharepointList', SearchBox,TicketNumber)
Just not good at combing it into my pre established statement