Hi @Piyush_Patil !
I’ve just modified the Disable if
section of your button and added this formula :
[How to disable button table].Is_Opened.ContainsOnly(true)
Where [How to disable button table].Is_Opened
creates the list of values (true or false) from your field Is_Opened
in the table [How to disable button table]
and ContainsOnly() should check if all the values within the list are only true
.
So, if all the values in [How to disable button table].Is_Opened
are true, ContainsOnly()
will output true
and the button should be disabled.
Otherwise, if ContainsOnly()
return false, the button will stay enabled
I hope this helps