I am trying to search a filtered Gallery and Both the Search and Filter functions work separately, not but when i put them together. (really new to Powerapps)
If(Filter('Part Add_1', Site.Value = Gallery10.Selected.Site) = true, Filter('Part Add_1', Value(Search_po.Text),"Process_x0023_")
This is what I am using. The Filter portion works, and the Search portion works, but when i try and put them together I get errors.
Solved! Go to Solution.
@dgarcia ,
Try this
Search(
Filter(
Part Add_1',
Site.Value = Gallery10.Selected.Site
),
Search_po.Text,
"Process_x0023_"
)
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 @dgarcia ,
Firstly, this returns a Table, so how can it be true?
Filter(
Part Add_1',
Site.Value = Gallery10.Selected.Site
)
Also I assume you are wanting to Search in the field Process_x0023_ with Search_po.Text - if so why have you wrapped it in Value() - Search only works on Text.
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 part, Is a gallery of a list, with the Site locations. See below blue button location. This alone works great.
Filter(
Part Add_1',
Site.Value = Gallery10.Selected.Site
)
The second part, searches/filters a separate list for the Process order number. Again, separately they work, together not so much.
Filter('Part Add_1', Value(Search_po.Text),"Process_x0023_")
@dgarcia ,
Try this
Search(
Filter(
Part Add_1',
Site.Value = Gallery10.Selected.Site
),
Search_po.Text,
"Process_x0023_"
)
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.
Well, I found out the issue with your help. It seems I can't search a Number type column. I changed the column to a text type and it works perfectly. Now i need to figure out how to make the numbers placed in the Process Order column tick up by the last input value.
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 | |
187 | |
70 | |
39 | |
34 |
User | Count |
---|---|
349 | |
269 | |
124 | |
78 | |
61 |