Hi,
If a colleague unchecks the checkbox/es, I would like the orange buttons to become disabled again, like when no check boxes are checked.
When we enter this screen: If(CountRows(FaultList) > 0, DisplayMode.Edit, DisplayMode.Disabled)
Then the user checks a box and they become enabled.
When the user unclicks a checkbox, then I would like the buttons to become disabled again please.
Thanks
Apologies, I see it
Hi, Can you help me identify where to place the missing code?
If(CountRows(FaultList > 0, VerifyItem.Value = true))
DisplayMode.Edit,
DisplayMode.Disabled
)
@JerryH
See my edited post above. I missed the comparison > 0 and the comma.
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Hi, its not liking something
I suggest you COUNTROWS from the gallery of Assets On Site rather than the datasource itself.
Place this code in the DisplayMode property of each orange button.
If(
CountRows(Filter(Gallery_AssetsOnSite.AllItems, Checkbox1.Value=true))>0,
DisplayMode.Edit,
DisplayMode.Disabled
)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473