Hi All,
First off, I'm using the default "Search box" that is generated when making an app based on a Sharepoint list.
So I've managed to edit the default gallery filter so I can filter by the column I want (I'm not an advanced user):
SortByColumns(Filter([@MySharepointList], StartsWith(Column_I_Want, TextSearchBox1.Text)), "Column_I_Want", If(SortDescending1, Descending, Ascending))
How can I add a "Column_I_Want_2", so that I can search based on 2 different columns. Say I have one for names and another for colors. How can I ass both so that I can search and get results from each column?
Also, is it possible to change it so that all the results are always sorted by created date, new to old?
Thanks in advance
Solved! Go to Solution.
Hi @EriSto ,
Something like this
SortByColumns(
Filter(
[@MySharepointList],
StartsWith(
Column_I_Want,
TextSearchBox1.Text
) ||
StartsWith(
Column_I_Want2,
TextSearchBox1.Text
)
),
Created,
Descending
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @EriSto ,
Something like this
SortByColumns(
Filter(
[@MySharepointList],
StartsWith(
Column_I_Want,
TextSearchBox1.Text
) ||
StartsWith(
Column_I_Want2,
TextSearchBox1.Text
)
),
Created,
Descending
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Thank you!
User | Count |
---|---|
200 | |
101 | |
89 | |
45 | |
43 |
User | Count |
---|---|
247 | |
105 | |
103 | |
65 | |
60 |