I have a Form to Pipedrive Zapier automation, and I want to assign each lead to one of two contact owners randomly. Can Zapier split the leads evenly between the two owners?
Best answer
How do I create a 50/50 split or Divide things equally in Zapier
Best answer by Fahad
Thanks for letting me know, what I ended up doing before seeing this was get a python code that basically gives out the output heads or tales on a random basis and instead of the output being “head” & “tails”. I swapped them to “Contact owner 1” and “Contact owner 2”.
Here’s the code for it incase anyone is looking for it
import random
outcomes = ["contactowner1", "contactowner1"]
result = random.choice(outcomes)
print(result)
This post has been closed for comments. Please create a new post if you need help or have a question about this topic.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.



