Skip to content

Synchronization

Automation Example: Synchronization (Wait for Multiple Things)

Sometimes, you need a process to pause and wait until multiple things have happened before it can continue. This is called “synchronization”.

Image

You can achieve this in Tallyfy automations by using the AND operator when setting up your conditions. Using AND means all the conditions you list must be true before the action happens.

Example: Wait for HR and Manager Approval

Let’s use the Employee Onboarding process again. Imagine you need approval from both the HR department and the new employee’s direct manager before the next set of onboarding steps can begin.

First, you would create two separate Approve/Reject type tasks, one assigned to HR and one assigned to the Manager.

Image

Then, you would create one automation rule that checks if both of these approval tasks are completed with an “Approved” status.

  • Rule:
    IF (HR Approval task) is "Approved"
    AND (Manager Approval task) is "Approved"
    THEN SHOW steps [List of next onboarding steps]
Image

The key here is using AND between the conditions. The next steps will only appear after both HR and the Manager have approved.

Summary

Using the AND operator in your automation conditions allows you to make a process wait until multiple conditions are met before it moves forward.

Automations > Logic operations explained

Tallyfy’s automation system uses simple “if-this-then-that” logic rules instead of complex flowcharts to automatically trigger actions in processes based on conditions like form responses deadlines or task approvals with the ability to combine multiple conditions using AND/OR operators for flexible business workflow automation.

Templates > Automations

Tallyfy process automations are smart IF-THEN rules that automatically perform actions like task assignments deadline changes and step visibility based on defined conditions to reduce manual work and ensure consistent process execution.

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.