Announcements
This isn't the condition logic misfiring, the first run (expressionResult false) correctly only ran the Else branch, that part is working as expected. The bug is specifically about what happens when the If branch is taken.
Looking at your screenshots: the If side of "If Validation Success" is empty, no action inside it. The Else side leads through Filter Attachments, If Attachments Exist, etc., and both branches appear to reconnect further down at "Create mail body Agent."
Per Microsoft's documentation on joining branches, a merge/join action only runs after all contributing branches complete, and it does this by referencing the specific action IDs it needs to wait on. If your If branch has no action inside it, there's no action ID on that side for the join step to reference. So when the If path is taken and needs to reach that merge point, the runtime has nothing to link back to, and you get PartialJoinNotReached / CROSS_SCOPE_MERGE.
try this Fix:
add at least one action inside the empty If branch, even a simple no-op like a Compose action, so that branch has something to run and something the merge node can reference. Then the merge node's dependency is satisfied on both sides.
This isn't a bug on Microsoft's end, it's a structural requirement: every branch reaching a merge node needs its own executable action, not just an empty branch.
This looks like a branch/merge configuration issue rather than the condition executing both paths. The PartialJoinNotReached / CROSS_SCOPE_MERGE error indicates that one possible branch ends before reaching the downstream merge action. Ensure every True/False path connects to the same next action, or remove the merge and place the common action separately in each branch.
Also confirm that expressionResult is a Boolean value, not the text "true" or "false". If the connections still behave incorrectly, delete and recreate the condition branches, save the flow, and test again. If the issue persists, collect the Workflow ID and Run ID for further investigation, as it may be a designer/connector rendering issue.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our community stars!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Mohsin Ali 356
Valantis 253 Super User 2026 Season 2
11manish 179 Super User 2026 Season 2