Skip to content

Automate hiding or showing tasks

Visibility actions explained

Visibility actions let you Show or Hide specific steps based on conditions. They’re smart switches - users see exactly what they need, when they need it.

Examples

Example 1 - CFO approval for big purchases:

IF (Purchase Amount field) is ">$10,000"
THEN SHOW step "Approval by CFO"

The CFO approval step appears automatically for purchases over $10k.

Example 2 - Skip irrelevant reviews:

IF (Customer Type field) is "Small Business"
THEN HIDE step "Enterprise Security Review"

Small business customers skip the enterprise security review entirely.

Example 3 - Adapt to user input:

IF (Application Type field) is "Mortgage"
THEN SHOW steps "Credit Check", "Property Valuation", and "Underwriting"

Selecting “Mortgage” reveals all mortgage-specific steps at once.

Here’s what it looks like in action:

Automation rule builder with visibility action

Completing one step makes the next one appear. That’s visibility automation at work.

Hidden steps can’t be completed

Hidden steps have an internal status of auto-skipped and can’t be completed. Any automation checking “if step is complete” on a hidden step won’t trigger - unless another rule makes that step visible first.

Only create completion-based automations for steps users can actually see. You can also manually show or hide steps using the three-dot menu on any task.

Hiding tasks by default in a template

All tasks show up when someone launches a procedure template. To keep certain tasks hidden until the right moment:

  1. Open your procedure template in the editor.
  2. Click on the step you want to hide initially.
  3. In the step’s settings panel, toggle Hide by default to Yes.
  4. Save the step.

Hidden steps stay out of sight until a Show automation brings them back.

Enforcing sequential task order

Sometimes Task B shouldn’t start until Task A is done. You can force tasks to appear in sequence using hidden tasks and Show visibility actions in your automations2.

  1. Task A: Leave it visible by default.
  2. Task B: Set it to hidden by default.
  3. Task C: Set it to hidden by default.
  4. Create Automation Rule 1 (Show Task B):
    • IF (Step Status) for Task A is Completed
    • THEN (Visibility) SHOW Task B
  5. Create Automation Rule 2 (Show Task C):
    • IF (Step Status) for Task B is Completed
    • THEN (Visibility) SHOW Task C

The result:

  • Process starts - only Task A shows up
  • Complete Task A - Task B appears
  • Complete Task B - Task C appears

You can chain as many tasks as you need this way.

Automations > Conditional visibility

Tallyfy lets you show or hide entire tasks in a workflow based on form field values using IF-THEN automation rules with AND/OR logic so that only relevant steps appear for each unique process path instead of maintaining separate templates for every variation.

Tasks > Manually show or hide tasks

Tallyfy lets you manually hide or show incomplete tasks in a running process using the three-dot menu on any task card which is especially useful when mid-process changes like a client switching business types leave irrelevant tasks visible that automation rules did not account for.

Tutorials > Create an automation

Tallyfy’s automation rules use simple IF-THEN logic to dynamically adapt workflows at runtime — such as hiding and revealing onboarding steps based on a new hire’s role selection in a form field — so processes self-adjust without any manual intervention.

Automations > Actions

Tallyfy’s automation actions are the “THEN” part of IF-THEN rules that automatically assign tasks to the right people adjust deadlines reopen completed steps for approval loops show or hide steps based on form answers and fire webhooks to external systems — eliminating manual work and ensuring processes run consistently every time.

Footnotes

  1. All visible tasks can be completed simultaneously by different assignees without waiting

  2. Sequential dependency ensures tasks complete in order, preventing race conditions