Course A · Module A3 No-Code Automation · Lesson 9 of 17
One-step automations are fine. Two-step automations with a safety net are how you actually save an hour a day.
Your first automation did one thing. Real business workflows do five — and sometimes they hit a snag halfway through. This lesson's single win: by the end you'll know how to chain steps together, add a branch that says "if X, do this; if not, do that," and build in a human-in-the-loop checkpoint so the automation can never do something embarrassing to a real customer without your eyes on it first.
A multi-step automation is just a recipe with more than one instruction. The trigger fires once; every action after it runs in order.
Build one step at a time. Run the scenario after each addition. If step 2 breaks, you know exactly where to look — you didn't add four things at once.
Most platforms call this a Router (Make) or a Filter / Path (Zapier). It lets you split the flow based on a condition.
Think of branching like a receptionist's decision tree: "If the enquiry says refund, route it to the billing folder. If it says new client, route it to onboarding. Anything else, put it in the general inbox." One trigger, three destinations — no manual sorting.
Common branch conditions that are easy to set without code:
Never activate an automation on real, live data until you have tested it with a fake example first. Every platform has a test / run-once mode. Use it. The checklist:
Two habits keep automations from running amok.
Set your platform's error-notification option so it emails or Slacks you the moment a step fails — before you wonder why nothing happened for three days. In Make: Scenario settings → Send a notification. In Zapier: Zap history alerts.
For anything customer-facing, the automation drafts or suggests — it never sends. Insert an approval step: the draft lands in a Slack message, a Google Doc, or a draft email folder. A person approves, then it ships. One extra click. Infinite peace of mind.
Answer before opening. Recalling it now is what makes it stick.
A branch (Router / Filter / Path). You split the flow on a condition — for example, "contact exists in CRM = yes" goes one path; "no" goes another. One trigger, two tailored actions.
Open the run history and check the data at each step. Most platforms show exactly what each step received and produced. Find the step where the folder field got the wrong value — that's where to fix the mapping.
Because a human-in-the-loop checkpoint is your safety net. AI can misread context or get a name wrong. One approval click before sending means a mistake embarrasses no one. Fully automated sending is only safe once you've reviewed many error-free drafts.
Read this next (primary source)
Make Help Center — the official documentation covers multi-step scenarios, routers, filters, and error handling with step-by-step screenshots. Start with "Scenarios" in the left nav. See RESOURCES.md for more.
Key terms from this lesson — trigger, action, human-in-the-loop — are defined in the course glossary. Keep it open.