Hello PowerApps community!
Just getting started with PowerApps 🙂
I have created an application to track the statuses for IT emergencies.
My PowerApp is connected to a SharePoint List. On the SharePoint List, there is a column called "Status" which has 2 potential options:
1. Resolved
2. Open
What I am trying to do:
I'm trying to create a way for the PowerApp to check the Status field to say:
If ALL the values in the "Status" field is "Resolved", then hide this button. Otherwise if there is anything different including "Open", then show this button.
Thanks much and here are some screenshots/documentation!
1. On the button's Visible property, I have tried to add the following:
If(HomeGallery.Selected.Status.Value = "Open", true,false)
*this does not seem to work because it only checks the last value that I clicked on
Attached are some helpful pics!
Button Logic
The View of the Powerapp
Nav