0Pricing
No-Code Automation · Lesson

Adding Filters and Paths

Implement conditional logic using filters and paths to control workflow execution based on specific criteria.

Adding Filters and Paths is a free No-Code Automation lesson on CoddyKit — lesson 1 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the No-Code Automation learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

Control Your Automation Flow

Imagine your automation needs to make decisions. Not every piece of data should follow the same path!

Conditional logic allows your workflows to act differently based on specific conditions. It's like giving your automation a brain to decide "if this, then that".

What are Filters?

A filter is your automation's bouncer. It checks incoming data and only lets it proceed if it meets certain rules you set.

  • Filters act as gates.
  • They stop unwanted data from moving forward.
  • They ensure your actions only run when necessary.

Filter Basics: If It's True, Go!

Think of a filter as an "if statement". If the condition you set is true, the automation continues to the next step. If it's false, the automation stops for that specific piece of data.

This prevents unnecessary tasks and saves resources in your automation platform.

Setting Filter Conditions

You can set filters based on many criteria:

  • Text: Does a field "contain", "start with", or "exactly match" a word?
  • Numbers: Is a value "greater than", "less than", or "equal to" a number?
  • Dates: Is a date "before" or "after" a specific time?
  • Existence: Is a field "empty" or "not empty"?

Filter Example: New Leads

Let's say you only want to add new leads to your CRM if their email address is from a specific domain (e.g., @coddykit.com).

Your filter would check the "Email" field and only allow data to pass if it "Contains" @coddykit.com.

When One Path Isn't Enough

Filters are great for "yes/no" decisions. But what if you need to take different actions for different scenarios, not just stop or go?

This is where paths (sometimes called "branches" or "routers") come in handy. They allow your workflow to split into multiple directions.

Filters vs. Paths: Key Difference

It's important to understand the distinction:

  • Filters: A single gate. Data either passes through or stops. There's only one "next step" if it passes.
  • Paths: Multiple gates, each leading to a different set of actions. Data takes one of several possible routes based on different conditions.

How Paths Work: Multiple Routes

With paths, you define a condition for each route. When data comes in, the automation checks each path's condition until it finds one that's true.

The data then travels down only that path, executing its unique set of actions.

Path Example: Customer Feedback

Imagine processing customer feedback. If the sentiment is "positive", send a thank you email. If "negative", create a task for your support team. If "neutral", log it in a spreadsheet.

Each of these would be a separate path, triggered by the sentiment score.

Check Your Understanding

Which statements accurately describe the use of filters and paths in no-code automation?

Recap: Logic in Your Workflows

You've learned how to add conditional logic to your automations!

  • Filters act as gates, allowing data to proceed only if it meets specific criteria.
  • Paths (or branches) enable your workflow to take different routes and perform distinct actions based on varying conditions.

These tools make your automations smarter and more efficient!

Frequently asked questions

Is the “Adding Filters and Paths” lesson free?

Yes — the full text of “Adding Filters and Paths” is free to read here on the web, and the No-Code Automation course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the No-Code Automation course, upgrade to CoddyKit PRO.

What will I learn in “Adding Filters and Paths”?

Implement conditional logic using filters and paths to control workflow execution based on specific criteria. You practise No-Code Automation with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start No-Code Automation?

No prior experience is required. No-Code Automation on CoddyKit is structured for beginners through advanced learners; this is — lesson 1 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Adding Filters and Paths” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this No-Code Automation lesson?

Yes. Every No-Code Automation lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Adding Filters and Paths
  2. Data Mapping and Transformation
  3. Iterators and Looping Workflows
  4. Working with Aggregators and Arrays
← Back to No-Code Automation