惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
D
DataBreaches.Net
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
M
MIT News - Artificial intelligence
美团技术团队
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
有赞技术团队
有赞技术团队
L
LangChain Blog
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
S
SegmentFault 最新的问题
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
B
Blog
I
InfoQ

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Audience Builder vs Data Filter: Which Segmentation Tool ...
SapotaCorp · 2026-05-24 · via DEV Community

Segmentation brief: "all subscribers living within 5km of our Hanoi store." Data Filter doesn't have a geo-radius option. Before jumping to SQL Query, check whether Audience Builder covers it - it often does, and the build is point-and-click instead of code.

Here's how we decide between SFMC's segmentation tools.

Data Filter

Point-and-click, no SQL required. Filters subscribers by attribute values from a DE or profile fields.

Examples Data Filter handles:
- MemberTier = "Gold"
- BirthMonth = 3   (March birthdays)
- LoyaltyPoints >= 500
- City = "Hanoi"

Enter fullscreen mode Exit fullscreen mode

What it can't do:

  • Geo-radius (within X km of a location)
  • Complex arithmetic or derived fields
  • Joining multiple DEs
  • Reading tracking data (opens, clicks)

Output: a Filtered Group (when run against a List) or Filtered DE (when run against a DE).

Audience Builder

A step above Data Filter. Adds:

  • Geo-targeting: subscribers within X km of a point.
  • Measures: filters based on tracking behavior (opened email in last 30 days, hasn't clicked in 3 months).
  • Real-time count: as you build the segment, see how many subscribers match - useful before committing to a send.
  • Drag-and-drop complex conditions that Data Filter can't express.

Built for segmentation that needs geo data, behavior data, or interactive audience sizing.

Measures - the thing Data Filter can't touch

Measures filter on tracking behavior, not DE fields:

Examples:
- Opened at least one email in last 30 days
- Has not clicked any email in last 3 months
- Opened at least 5 emails last year

Enter fullscreen mode Exit fullscreen mode

Data Filter reads DE columns; tracking data lives in Data Views (_Open, _Click, _Sent). Measures bridge that gap without SQL.

If a client asks for "engaged subscribers only" and can't define engagement as a DE field, Measures in Audience Builder is the tool.

Decision table

Need

Use

Filter by attribute in DE

Data Filter

Filter by geo-radius

Audience Builder

Filter by tracking behavior

Audience Builder (Measures)

See real-time count while building

Audience Builder

Join multiple DEs

SQL Query (covered in the next post)

Complex arithmetic / derivations

SQL Query

Licensing note

Audience Builder is not included in every SFMC edition. Available with Marketing Cloud Advanced, Enterprise 2.0, or as an add-on module. Before promising a geo-targeted segment, confirm the client has access.

Data Filter is included with every edition.

Reaching for the right tool

The rule we use:

  1. Can Data Filter do it? → Data Filter.
  2. Need geo, real-time count, or tracking behavior? → Audience Builder.
  3. Need joins or complex logic? → SQL Query (covered in the next post).

Stopping at step 1 whenever possible keeps builds debuggable for the client team. Jumping straight to SQL when Data Filter would've worked creates a maintenance burden nobody wants.

Examples from recent work

  • Segment: "Gold tier members in Da Nang" → Data Filter (two attribute conditions).
  • Segment: "Subscribers who opened any email in last 45 days and live within 10km of flagship store" → Audience Builder (Measures + geo).
  • Segment: "Subscribers whose last purchase amount was >2x their average" → SQL Query (derived calculation, needs aggregation).

Takeaway

Audience Builder fills the gap between Data Filter's simplicity and SQL Query's complexity. Geo-targeting, tracking behavior, and real-time counts are the three signals that push a segment from Data Filter to Audience Builder. SQL comes out only when neither tool can express the logic.


Building SFMC audience segmentation? Our Salesforce team designs segmentation strategies matched to the client's edition and use case on production engagements. Get in touch ->

See our full platform services for the stack we cover.