Hi @TomVictor ,
There are many ways to achieve this. For example suppose you have a button which navigates the user to a specific screen, you can apply the below to the DisplayMode property of the button.
If the Collection is empty, the button is enabled, otherwise it will be disabled.
If(
CountRows(ColUpdate) = 0,
DisplayMode.Edit,
DisplayMode.Disabled
)
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution
If you like my response, please give it a Thumbs Up.