If you have heard that automation could save you hours every week but have never actually built one, this tutorial is for you. We are going to walk through building your very first automation from scratch, step by step, in plain English. No code, no jargon, and no assumptions about technical skill. By the end, you will have a working automation running in the background — and, more importantly, you will understand the simple pattern behind every automation, so you can build dozens more on your own.
We will use Make.com for this tutorial because it is free to start, powerful, and beginner-friendly, but the exact same concepts apply to Zapier, n8n and every other tool. Set aside about twenty minutes, and let us build something real.
The one concept behind every automation
Before we build anything, understand this, because it is the key that unlocks everything: every automation is just a trigger followed by one or more actions. A trigger is the event that starts it (“when a new email arrives,” “when someone submits a form”). An action is what happens in response (“add a row to a spreadsheet,” “send a Slack message”). That is the entire idea. Once you can think in terms of “when X happens, do Y,” you can describe any automation you will ever want to build. Everything else is just detail. If you want a fuller grounding, our workflow automation beginner guide covers the concepts.
Step 1: Choose what to automate
For your first automation, pick something simple and genuinely useful. A perfect starter project is: “When someone submits my contact form, save their details to a Google Sheet and send me a notification.” It is easy to build, hard to break, and immediately useful. Resist the urge to start with something complicated — the goal of your first build is to understand the pattern and get a win, not to automate your entire business at once.
Write your automation as a plain sentence first: “When [trigger], do [action].” For our example: “When a new form response arrives, add it to a spreadsheet and notify me.” That sentence is your blueprint.
Step 2: Set up your free account
Go to Make.com and create a free account — no credit card needed. The free plan includes 1,000 operations a month, which is plenty to learn on and to run several real automations. Once you are in, you will see the dashboard where your “scenarios” (Make’s word for automations) live. Click to create a new scenario, and you will be looking at the blank visual canvas where we will build.
Make.com
Create your free account to follow along — no card required ★★★★★ 9.4
Step 3: Build the trigger
The trigger is the first module you add. Click the big plus on the canvas and search for your trigger app — in our example, your form tool (Google Forms, Typeform, or similar). Choose the trigger event, which will be something like “Watch Responses” or “New Form Submission.” Make will ask you to connect your account — this is a one-time secure login that authorises Make to watch for new submissions. Follow the prompts, and you will have your trigger in place. This module is now the starting point: every time a new form response arrives, your automation will spring to life.
Take a moment to appreciate what just happened: you told a piece of software to watch for an event and act on it, without writing a single line of code. That is the whole magic of no-code automation.
Step 4: Add the action
Now we tell the automation what to do. Click the plus next to your trigger to add the next module, and search for your action app — Google Sheets, for our example. Choose the action “Add a Row.” Connect your Google account when prompted, select the spreadsheet and worksheet you want to use, and then comes the satisfying part: mapping the data. Make shows you the fields from the form submission (name, email, message), and you simply drag each one into the matching spreadsheet column. This mapping is how data flows from the trigger into the action.
To complete our example, add a second action — a notification. Add another module, choose your email or Slack app and its “Send” action, and write a short message that includes the person’s name and what they wrote. Map those fields in just like before. Now your automation does two useful things in sequence: saves the lead and alerts you.
Mapping data between steps is the skill that makes automation click. Once you have done it once, every future automation feels familiar.
Step 5: Test it
Never switch an automation on without testing it. Make has a “Run once” button that executes your scenario a single time so you can watch it work. Submit a test entry to your form, click Run once, and watch the modules light up as the data flows through. Then check your spreadsheet — your test entry should be sitting there in the right columns — and check that your notification arrived. If something looks off, Make shows you exactly what each module received and sent, so you can spot the problem (usually a field mapped to the wrong column) and fix it quickly. This is also where you would learn the basics of fixing errors; our debugging guide goes deeper.
Step 6: Turn it on
Once your test works, the final step is to switch the scenario on and set its schedule — for example, to check for new submissions every fifteen minutes, or instantly via a webhook. Toggle it on, and you are done. Your automation now runs in the background, twenty-four hours a day, handling every new form submission without you touching it. Congratulations — you have built and launched your first automation.
Where to go next
You now understand the pattern that powers every automation: trigger, action, map the data, test, launch. That single pattern, repeated with different apps and instructions, can automate an astonishing amount of your work. From here, a sensible path is:
- Build your second automation — try instant lead follow-up, one of the highest-value automations there is.
- Add intelligence by connecting AI — see our ChatGPT automation guide.
- Get ideas from our 15 automation ideas for small businesses.
- Choose the right tool long-term with our best AI automation tools ranking.
Build one automation at a time, test each properly, and within a few weeks you will have quietly handed off a big chunk of your busywork to software. That is how automation transforms a business — not in one giant leap, but one reliable workflow at a time.
Key takeaways
- Every automation is just a trigger followed by actions.
- Start simple: form submission → spreadsheet → notification.
- Always test with “Run once” before switching it on.
- Use a free tool like Make.com and build one automation at a time.
Frequently asked questions
Do I need to know how to code to build an automation?
No. Tools like Make and Zapier are fully no-code — you connect apps and map data visually, with no programming required.
How long does it take to build a first automation?
A simple two-or-three-step automation takes about 15–20 minutes once you are following a tutorial like this one.
Is it free to start?
Yes. Make, Zapier and n8n all have free plans that are enough to build and run your first automations at no cost.
What if my automation breaks?
Make shows you exactly what each step received and sent, so problems are easy to find. Add error handling and failure alerts as you grow more confident.
Tips to make your first automation a success
A few small habits will save you frustration and set you up to build with confidence:
- Name your scenarios clearly. “Contact form to Sheet + notify” is far more useful in six months than “Scenario 1.” As you build more automations, good names keep everything findable.
- Start with low-stakes automations. Your first builds should be ones where a mistake is harmless — saving form data, sending yourself a notification. Save customer-facing automations for once you are confident.
- Use one new app at a time. If both the trigger and action apps are new to you, connect and test them one at a time so you always know where a problem is coming from.
- Check the execution history. Make keeps a log of every run. Glancing at it occasionally tells you instantly whether your automation is working or quietly failing.
- Do not over-engineer. The best first automation is boring and reliable. Fancy comes later; reliable comes first.
Why building it yourself matters
You could pay someone to set up every automation for you, and for complex systems that often makes sense. But there is real value in building your first one yourself: it demystifies automation completely. Once you have watched data flow from a form into a spreadsheet because you connected the two, automation stops feeling like magic and starts feeling like a tool you control. That understanding pays off every time you spot a new task worth automating — and you will start spotting them everywhere.
The people who get the most from automation are not the most technical; they are the ones who simply started, built one small thing, and kept going. You now have everything you need to be one of them. Open Make, follow the steps above, and in twenty minutes you will have your first automation running. Then come back and build the next one. Before long, a meaningful chunk of your weekly busywork will be handled quietly in the background, freeing you for the work that actually moves your business forward.
Related guides
Want it built for you?
We design, build and maintain reliable automation stacks for your business.
Explore our services →