Split testing Flows

(Ian Lawrence) #1

Hi

I am A/B testing 2 flows which are both called from another flow.
Is it possible to weight the probability a flow is chosen by some percentage?

Thanks!

(Daniel Beckett) #2

Hi Ian,

If I’m understanding this correctly you have 3 flows - A, B & C

Flow A is your main flow and from there you need to trigger flows B & C based off a set probability? For example, I trigger flow A and then there’s a 60% chance that I am passed to flow B and a 40% chance that I am passed to flow C.

The Number service can be used to generate a random number which means that you could generate a number from 0 to 10 and then use filters to control which flow runs. For example…

Hopefully that helps :slightly_smiling_face:

Thanks,
Dan

(Ian Lawrence) #3

Hey Dan
Thats exactly what I had in mind!
Thanks for the awesome support :slight_smile: