How to create a round-robin randomizer using Code by Zapier

  • 14 March 2022
  • 0 replies
  • 632 views
How to create a round-robin randomizer using Code by Zapier
Userlevel 7
Badge +14

📌  We do our best to ensure that the code in these articles works as advertised, but please be aware that Zapier Support does not officially help with code steps due to their advanced nature. Feel free to comment on the article or ask in the Zapier Community, where we have code-savvy users.

The Purpose

Randomize the routing for round robin.

How to Configure

Copy the Code

let Set = inputData.Set.split(",");
let Length = Set.length;
let Pick = Set[Math.floor(Math.random() * Length)];

output = [{Pick, Length, Set}];

The Results

Contribution by Troy Tessalone

Troy is a Certified Zapier Expert who automates workflows with no-code and low-code apps to help clients save time and make money.


This post has been closed for comments. Please create a new post if you need help or have a question about this topic.