Skip to content

Logic operations explained

Understanding automation logic in Tallyfy

Tallyfy’s automations use a simple logic system to create rules. These rules decide when automatic actions should happen in your processes.

The basic “IF… THEN…” rule

All automations follow this basic idea:

IF [something is true]
THEN [do this action]

This works just like decisions you make every day:

The Condition (the IF part)

The condition is the trigger. It checks if something in the process is true or false.

Examples:

  • IF a form field answer is “Yes”
  • IF a deadline is near
  • IF a task is approved

The Action (the THEN part)

The action is what Tallyfy automatically does when the condition is true.

Examples:

  • THEN assign the task to the manager
  • THEN mark the task as complete
  • THEN show or hide the next step

Using multiple conditions together

Often, you need to check more than one thing before an action happens. Tallyfy lets you combine conditions using AND or OR:

Using AND

AND means ALL conditions must be true for the action to happen.

IF [condition 1 is true] AND [condition 2 is true]
THEN [do this action]

Example: IF the request is urgent (condition 1) AND the amount is over $1000 (condition 2) THEN assign the task to the finance manager

Using OR

OR means AT LEAST ONE of the conditions must be true for the action to happen.

IF [condition 1 is true] OR [condition 2 is true]
THEN [do this action]

Example: IF the client has a VIP account (condition 1) OR the order is over $5000 (condition 2) THEN show the “Offer Discount” step

Combining AND and OR

You can mix AND and OR using parentheses () to create more complex rules, just like in math:

IF [condition 1 is true] AND ([condition 2 is true] OR [condition 3 is true])
THEN [do this action]

This flexibility lets you build rules that match your specific business needs.

Automations > Conditionals

Conditional logic enables automated decision-making in processes by using simple IF-THEN rules based on specific criteria like form responses task statuses user roles and time triggers.

Features > If-this-then-that

Tallyfy replaces complex flowcharts with simple if-then rules that allow users to automate workflow decisions and actions without programming knowledge while integrating with external tools through APIs and webhooks.

Templates > Automations

Smart automation rules in Tallyfy watch process activities and automatically perform actions based on predefined conditions to streamline workflows and reduce manual work.

Conditionals > Conditionals (IF) explained

Tallyfy’s automation system enables users to create conditional rules based on step status and form field values to automatically trigger actions in their workflows.