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.

Templates > Automations

Tallyfy’s automation system uses IF-THEN logic to automatically execute actions and make decisions based on predefined rules which streamlines workflows and ensures consistent process execution.

Automations > Actions

Tallyfy’s automation system offers four action types - assignment deadline status and visibility - to automatically handle task management based on predefined conditions and rules for streamlined workflow execution.

Automations > Examples

The guide showcases practical automation patterns with real examples that demonstrate how to use rule-based workflow automation for handling approvals task assignments notifications and process branching based on form inputs.

Conditionals > Conditionals (IF) explained

Tallyfy’s automation system enables checking step statuses and form field values to trigger conditional actions based on specific criteria like completion approvals expirations and input data types.