Hello,
So I have an issue that im really struggling to resolve.
I'm creating CRM app that can generate report in app i have relational gallery like parent child gallery or aka nested gallery i want to filter the gallery with search textbox or multiple filter.
when i search by user the main gallery run perfectly but when i referencing child gallery with product details in doesn't work or might be my execution is wrong so can any one help me to figure it out..
here i attach the screenshot
Solved! Go to Solution.
Hi @Mehta_Tech
Please watch this Shane Young video (@Shanescows )
It really covers the subject well.
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.
Regards
Pavan Kumar .G
On your nested products gallery, wrap the entire "Items" property in
Search( [your original products gallery items] ), ProductsSearchBoxName.Text, "Product Name")
It won't dynamically filter the Clients too, but it will filter your products. So you will get all clients and only products matching your search.
I already test it but it doesn't work .
my problem is when i search the products only see the parent gallery item with that product.
in the screenshot you see there is two textbox 1st box search customer(parent gallery) 2nd box search product( child gallery) but when i search for a product gallery only show me that relate product that customer have and my customer list and product list both are relational so could you help me.
If I understand you properly, when you search for "cable dlink Cat6" in your product search box, then you only want to see the one client "The Nawangar Co-Operative Bank" who has ordered that product?? I have not managed to get that right. I still see all my clients, but all products are filtered out other than "cable dlink Cat6". Will watch with interest to see if you get it right.
I think I have a solution for you. I managed to get it working my side.
It is hard to explain but in essence you need to add filter to the "items" property of your parent or Client gallery as follows:
here i attached my code image please find it.
when i search for product that only see me that parent record with that record.
but i put all the filter function to the parent gallery that work on child too.
i show multiple filter video of @Anonymous is best but it doesn't work in child parent relational gallery.
I can't open those png's for some reason. Just copy and paste your code here.
Sorry - that was a bandwidth glitch. We have massive power problems here so I am operating of 3G. Anyway, I got your png's downlaoded.
Place this in your “Challan List” Gallery "Items" property
Search(Filter(‘Challan List’ , CountRows(Filter(‘Challan Details’, CListID = ‘Challan List’.[@ID] && Searchbox_Products.Text in Title)) > 0), SearchBox.Text , “CustomerName”)
Place this in your “Challan Details” Gallery "Items" property
Search(Filter(‘Challan Details’, CListID = Thisitem.ID), Searchbox_Products.Text, “Title”)
Just a quick note to add: When using Search instead of filter, you can add multiple fields to search, and PowerApps will search all of them, so for example this last statement could become:
Search(Filter(‘Challan Details’, CListID = Thisitem.ID), Searchbox_Products.Text, “Title”,"ProductDescription", "ProductCode", "ProductColour")
User | Count |
---|---|
257 | |
107 | |
90 | |
51 | |
44 |