Hi @WarrenBelz
I am really sorry. I probably sound pretty dumb to you. This is entirely my first time messing with code.
So the Items property of the gallery is;
If(
StatusDropdown.SelectedText.Value="All",
NewNCR,
If(
CategoryDropdown.SelectedText.Value="All",
Filter(NewNCR, Status.Value = StatusDropdown.SelectedText.Value),
Filter(NewNCR, Status.Value = StatusDropdown.SelectedText.Value && Category.Value = CategoryDropdown.SelectedText.Value)
)
)
The search box is simply 'SearchBox1'
I was hoping that it could search all fields within the Gallery. I am trying to make it easy for the users to search for a word and for it to load anything with that word in it.
Is this possible?
Kevin