Can't get the "Disable If" to work properly

Hi
I have a tasks table with certain set of tasks/actions. The users fill the tasks table with the tasks that are assigned for them, when they finish a task they “submit” it to the Log.
Some of the tasks require extra details and should not be submitted without them. I want to disable the “Submit” button if the task require details (defined in the “Actions” table) AND the details are blank (only if both are true), but the button is disabled for all the tasks that don’t have details, not only those that require them. Any ideas on how to solve this?
Thanks

@Asaf_Dafna

Does this do what you want?

(thisRow.Action.[Require Details]=true AND thisRow.Details.IsBlank())

@Ander

Yes!
Thank you

1 Like

Dear @Ander,

Thanks for your valuable input :handshake:

Just curious,
Will it be possible when “submitted” to empty the details of that row?

@Jean_Pierre_Traets

Like this?

Dear Ander,

Thanks a lot :beers:

1 Like