Hello, 😀
I need to make a search box that searches a gallery, however my gallery already has the following formula and I am not sure how to incorporate a search box function:
Sort(Filter('Hotel Reviews',(IsBlank('Review Complete'))), Hotel.Value)
I would like the search box to search based off of a choice column in the SP list. When formulas get nested i tend to get lost in it...
Thanks so much!
Hi @JJJ04 ,
The below is a little complex to keep it Delegable. I assume Hotel is the Choice field you are referring to
With(
{
wList:
Filter(
'Hotel Reviews',
'Review Complete'=Blank()
)
},
Sort(
Search(
AddColumns(
wList,
"HotelVal",
Hotel.Value
),
YourTextBoxName,
"HotelVal"
),
HotelVal
)
)
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 @JJJ04 ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
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.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
182 | |
47 | |
46 | |
34 | |
33 |
User | Count |
---|---|
260 | |
87 | |
79 | |
68 | |
67 |