This button ‘Open links’ open URLs from the table. Once it opens the URL, it automatically ticks the checkbox next to those URLs. I want to disable this button if all of the URLs are opened. So that I can go ahead and click on ‘Reset’ button. Can you help me with the if formula to disable the button?
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