Hi,
I'm quite New to PowerApps and have a problem I really hope someone could help me with.
Building an app using a SharePoint list. I want to filter multiple columns based on my search Box and have tried many diffferent ways and looked up different solutions but can't get them to work. Would be really greatful if someone could help me out. This is how it looks:
Solved! Go to Solution.
I have made a test with:
What is the actual issues, your formula doesnt indicate any error
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
With this formula it is only possible to search for Title. I would like the possibility to search for subtitle and body as well.
Try;
SortByColumns(Filter([@Powerapps], StartsWith('Title',TextSearchBox1.Text) || StartsWith( SuntitleColumn, TextSearchBox1.Text || StartsWith(BodyColumn, TextSearchBox1.Text) ),Title,If(SortDescending1,Descending,Ascending))
Change BodyColumn and SuntitleColumn to the actual column names
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
I still can't get it to work..
SortByColumns(Filter([@Powerapps], StartsWith('Title',TextSearchBox1.Text) || StartsWith(Forhandler, TextSearchBox1.Text || StartsWith(Lagerstatus, TextSearchBox1.Text) ),Title,If(SortDescending1,Descending,Ascending))
There is something wrong where I put the color to red..
use:
SortByColumns(Filter([@Powerapps], StartsWith('Title',TextSearchBox1.Text) || StartsWith(Forhandler, TextSearchBox1.Text || StartsWith(Lagerstatus, TextSearchBox1.Text) ),"Title",If(SortDescending1,Descending,Ascending))
If there are errors, show a screenshot
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
I have made a test with:
User | Count |
---|---|
228 | |
103 | |
96 | |
57 | |
31 |
User | Count |
---|---|
283 | |
113 | |
107 | |
63 | |
62 |