
Announcements
Hi PowerApps Community.
I am new with power Apps
I have two queries in canvas mobile App.
1) I have created app with SharePoint list connector, in which I have dynamic browsing gallery.
So user changes field values everyday and when field reaches null it should disappear from browsing gallery which is not happening at this moment. Is it possible? (Note: I need that entry in SharePoint so it should not delete from SharePoint list).
2) in the same App, I have one drop-down with multiple customer choices, so if I choose specific customer then another two text box should appear so user can make entry in that and form remaining customer another two text boxes should not appear as we don't need to fill in data for that customer. Is this possible?
Please let me know if you need more information.
Thank you in advance!
Best Regards,
Anish Parikh
Hi @auparikh ,
You could set the items property of gallery to:
Filter(DataSource,ColumnName <> Blank())
Set the visible property of text boxes to:
If(DropdownName.Selected.DisplayName = "name",true,false)
Best Regards,
Habsburg Qian
If this post helps, then please consider Accept it as the solution to help the other members find it.