When someone edits either of our checkbox fields, we need to hide or show other fields, the ones relating to tasks and comments. We easily set this with two simple workflows based off of our 2 different decision box fields:
if(input.add_note)
{
show Note;
}
else
{
hide Note;
}
if(input.create_task)
{
show Task_Subject;
show Priority;
show Due_Date;
}
else
{
hide Task_Subject;
hide Priority;
hide Due_Date;
}