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
Does this do what you want?
(thisRow.Action.[Require Details]=true AND thisRow.Details.IsBlank())
Yes!
Thank you
1 Like
Dear @Ander,
Thanks for your valuable input
Just curious,
Will it be possible when “submitted” to empty the details of that row?
Like this?
Dear Ander,
Thanks a lot
1 Like