Dear All,
First Question
I need my input box, whether those word is capital or small letter,
the result should came out the same.
If(TextInput1.Text = "",
Filter(
MergedCollection,
If(
IsBlank(Where.Selected.Result) || Where.Selected.Result = "Select All",
true,
Located exactin Where.Selected.Result
),
If(
IsBlank(What.Selected.Result) || What.Selected.Result = "Select All",
true,
Category exactin What.Selected.Result
)), Filter(
MergedCollection,Equip_x0020_Code exactin TextInput1.Text,
If(
IsBlank(Where.Selected.Result) || Where.Selected.Result = "Select All",
true,
Located exactin Where.Selected.Result
),
If(
IsBlank(What.Selected.Result) || What.Selected.Result = "Select All",
true,
Category exactin What.Selected.Result
)
) )
Here is my filter on Gallery that I use to filter from 2 DropDown boxs /or/ 1 input and 2 DropDown boxs , 2 cases to use. But I only need only Capital or Small letter.
IsMatch(Result, "^[a-zA-Z]")),Result))
Sholud I use this one? but I dont know where I should apple it.
Second Question
However in my input box, I have to type a complete name in order to make the fulter in Gallery works, but I want it
to be like the searching box. Eg. when I type "za", for example, the filter in Gallery should show the lists "zara","zalong", some thinng like this.
But for mine I have to type full name "zalong" in order to filter zalong name
Colud you help me to fix it ?
Best Regards,