Announcements
I would like to have a popup showup like shown when I select the filter icon in the top right. Does someone know how to accomplish this? My popup is a container.
Create a container control and place it on your screen where you want the popup to appear.
Set the Visible property of the container control to false.
Add the controls that you want to display in the popup inside the container control.
Add a button or icon to your screen that will be used to open the popup.
Set the OnSelect property of the button or icon to the following formula:
Set(popupVisible, true)
This formula will set a variable called "popupVisible" to true when the button or icon is selected.
Set the Visible property of the container control to the "popupVisible" variable:
Visible: popupVisible
This will make the container control visible when the "popupVisible" variable is set to true.
Add a close button to the container control to allow the user to close the popup.
Set the OnSelect property of the close button to the following formula:
Set(popupVisible, false)
This formula will set the "popupVisible" variable back to false, hiding the container control.
By following these steps, you should be able to create a popup similar to the filter popup in PowerApps.If you feel that my response has helped you, please consider giving it a thumbs up and please mark it as the solution. This will help other community members find the solution quickly if they have a similar issue in the future.
Hi @EMA03356!
Container is the way that I use to make a popup. You can control the Visible property of conteiner.This can help you:
1. Set an UpdateContext in the icon's OnSelect. For example UpdateContext({ShowFilters: True}).
2. Change the visibility of the container to "ShowFilters".
3. Add a close icon in the conteiner and set OnSelect property to update context to false. Like UpdateContext({ShowFilters: False})
It works like a popup.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Vish WR 633
11manish 588
Valantis 457