I have a filter on a gallery but i am trying to remove the case sensitivity. The filter i have is as follows:
Filter( AddColumns('Digital Skills',"Present",Sum(ForAll(Split(TextInput3.Text," "),If(IsBlank(Find(Result,Key_x0020_Skills_x0020_2)),0,1)),Value)), Present=CountRows(Split(TextInput3.Text," ")) )
If i do a search for 'PowerApps' it returns the results but if i type 'powerapps' it wont. Is there a way i can fix this?
thanks
Alistair
Solved! Go to Solution.
Might be a better way of doing it but you could always use Lower() on the column you want to filter on and Lower() on the value you want to filter by.
Simplified example
Btn: ClearCollect(items, {name: "lowercase"}, {name: "LOWERCASE"},{name: "lOwErCaSe"})
Gallery: Filter(items, Lower(name)=Lower(TextInput2.Text))
So
Lower(Key_x0020_Skills_x0020_2)
and
Lower(TextInput3.Text)
in your case if I'm reading that formula correctly. The results in the gallery will display their proper formatting
Edit: forgot to add image
Might be a better way of doing it but you could always use Lower() on the column you want to filter on and Lower() on the value you want to filter by.
Simplified example
Btn: ClearCollect(items, {name: "lowercase"}, {name: "LOWERCASE"},{name: "lOwErCaSe"})
Gallery: Filter(items, Lower(name)=Lower(TextInput2.Text))
So
Lower(Key_x0020_Skills_x0020_2)
and
Lower(TextInput3.Text)
in your case if I'm reading that formula correctly. The results in the gallery will display their proper formatting
Edit: forgot to add image
thank you, that worked great.
User | Count |
---|---|
225 | |
101 | |
93 | |
57 | |
31 |
User | Count |
---|---|
284 | |
116 | |
109 | |
63 | |
57 |