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.
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
204 | |
188 | |
80 | |
50 | |
38 |
User | Count |
---|---|
305 | |
251 | |
122 | |
73 | |
55 |