Hey @ArchieCourt,
Not being an idiot! It’s a great question!
Trust your gut on this one! With the existing conditional split you have now of “Placed Order zero times in the last 180 days”, this would take into account the event that triggered the user into the flow! This means that users who place an order who is not a first time purchaser, would always be navigated down the NO path for the second conditional split.
With that in mind, I don’t believe updating the split to be “Placed order at least once in the last 180 days” would work towards your goal either. This would cause all users who reach this split to be evaluated down the YES path. The bottleneck would still remain where your flow is triggered by a Placed Order event that would be evaluated by the conditional split as well.
Instead, I believe replacing that conditional slit with a “Placed Order is at least 2 in the last 180 days” would work better. This would allow the triggering placed order event to be accounted for an only if the user a subsequent order in the last 180 days would be brought down the YES path, if not, they would be taken down the NO path and receive an email.
Another thing that you may want to consider is separating this flow experience out as two flows. The second conditional split seems to be attempting to achieve a winback sequence based on non-purchasers in the last 180 days. This would be best achieved through it’s own dedicated flow rather than nested in one.
I hope this helps!
David
@David To Thanks a bunch for the answer! This has really helped me out here. Thanks.