Ever wondered how to set up a round-robin in a Zap?

  • 9 February 2022
  • 4 replies
  • 5476 views
Ever wondered how to set up a round-robin in a Zap?
Userlevel 4
Badge +1

Or perhaps, you’d like to learn what a round-robin is? Then keep on reading!

Every once in a while, we get a support request to help them with set up a round-robin Zap. While there are some resources scattered around, I wanted to help provide a robust solution that everyone can implement—without using external SaaS apps.

Bonus! There is a shared Zap linked below, so you can start building out a round-robin Zap, right away.

First, here is what makes a round-robin possible:

2555ffb3133dcd3ca3cea9c1cba67cdd.png

These are the steps we’ll need:

  1. Storage by Zapier > Increment Value
  2. Formatter by Zapier > Numbers > Spreadsheet-Style Formula
  3. Formatter by Zapier > Utilities > Lookup Table

The breakdown

In order for the Zap to keep track of how many times it ran, we’ll want to instruct the Zap to keep a record. This can be done with an increment-value step.

For the key, I used “roundRobinKey” but you can choose something of your liking as well (you’ll want to click in the “Key” field and manually type out the name of the key). Each time the Zap is triggered, we’ll want to increase the value with 1:

44d651c18471ae158deab2098ea849f3.png

Then, the first part of the magic happens. Now it’s time to dynamically output a different value each time, to create the round-robin. This can be done with the MOD() function:

5e1a9eea83d89d4eee2b038b5acf90a5.png

The formula we have used is:

MOD(X,Y)+1

X is the output of the incremental-value step, which will be an ever-increasing number. In the screenshot above, you can see it currently holds the value of 7, as I retested that step several times.

Y is the number of different outputs we would like. For instance, if you have a sales team of 3 people, and you want to assign leads evenly, you’ll use the value of 3. If you have 4 sales people, Y=4, etc.

The “+1” part has been added to make sure you will always get a value between 1 and Y. In the above example, the output will always be 1, 2 or 3. 

Finally, we’ll then want to give this Zap a dynamic character, meaning that it should do something different each time. While there are many ways of doing this, I personally love the lookup table for dynamic behavior. More info on dynamics in Zaps, check out this lovely blog post by my dear colleague Tyler:

https://zapier.com/blog/zaps-different-results/

Back to the Zap, let’s take a look at the following screenshot:

8c7eeb694c8d42db2e3b155c6563ca91.png

The lookup key is the object that the Zap will look at. In this case, we’ll want to use the output of that MOD()-function step.

On the left column, you’ll see the values 1,2 or 3. In case you have 4 sales people to assign leads to, you’ll want to add another row. 

On the right, you’ll then notice a different value we added in each row. In the above screenshot, I have use a different link, as I want to send information to a different link each time. More on that later.

With the above setup, whenever the Zap is triggered, it will add a +1 each time, then dynamically return either 1, 2 or 3 and then dynamically output a different link.

If you are using something like Salesforce (or any other type of CRM), it is very possible you’ll want to update the owner field, which requires a different Salesforce owner ID. In the lookup table, on the right, you’ll be able to add those instead of different links.

Another great post on lookup tables can also be found here:

https://community.zapier.com/tips-and-inspiration-5/don-t-be-afraid-of-the-lookup-table-6373

Now, instead of the lookup table, you can also use Paths by Zapier to perform a different set of action steps, or you could add a Filter step to only let a Zap go through every 3rd time. The options are endless!

Bonus 1:

To get jump-started, feel free to use the shared-Zap link to start building your round-robin Zap:

https://zapier.com/shared/c95fa48f481eca5a9419ab6c27cbe4bdacc5bb98

Bonus 2:

This is a pro tip to build out, for instance, a Zap system:

482243cc5dc692d02ba19bef5f8f34bc.png

What we can see here is a POST in Webhooks by Zapier step.

The URL is mapped with the output of the lookup-table step. If we replace those links in the lookup-table step with catch-hook URLs (see this screenshot) we can dynamically trigger a different Zap each time our round-robin Zap is triggered.

This could be useful if you have a need for a really dynamic setup. For instance, it could be you’re working with a group of VA’s (virtual assistance), where 2-3 VA’s would like to get an email with a new lead or action, others might work in Slack, others use Salesforce, etc. 

More info on using webhooks can be found here:

https://zapier.com/help/doc/how-get-started-webhooks-zapier

Please note that webhooks are considered an advanced feature. We might be able to help with certain queries, but some others may fall out of scope. For expert help on custom webhooks, check out our Zapier Experts directory:

https://zapier.com/experts

Have a great rest of your week!

All the best,

~ Leo


4 replies

Userlevel 1

Hi @Lionel_Selie, it looks like the linked zap is no longer available. Is there a new link that could be shared?

Userlevel 4
Badge +1

Hi @Lionel_Selie, it looks like the linked zap is no longer available. Is there a new link that could be shared?

 

Oh—thanks for letting me know! Sure thing @bgreeno, here it is:

https://zapier.com/shared/c95fa48f481eca5a9419ab6c27cbe4bdacc5bb98

Let me know if there’s anything else 👍

Hi! I am using the round-robin and was wondering if there’s a way to manually change the value stored in Storage by Zapier. I had a duplicate record created and I want to do a “-1”. Is this possible? Couldn’t find a way to do it 

Userlevel 4
Badge +1

Hi! I am using the round-robin and was wondering if there’s a way to manually change the value stored in Storage by Zapier. I had a duplicate record created and I want to do a “-1”. Is this possible? Couldn’t find a way to do it 

Should be!

You can add a temporary action, using the “Set Value in Storage by Zapier” action. Select the connection, add the key and set the value you’d like. Then delete the Zap and delete the draft. The next time the Zap runs, it should continue from the value you’ve set it to.

Reply