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 employs straightforward IF-THEN logic rules for automating workflow actions based on specific conditions that can be combined using AND/OR operators to create sophisticated business process automation.

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.

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.

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.