- aMEHzon
- Posts
- Mastering New-to-Brand Analysis: Your Secret Weapon for Customer Acquisition
Mastering New-to-Brand Analysis: Your Secret Weapon for Customer Acquisition
Why Your Amazon Strategy Might Be Leaving Money on the Table
Picture this: You're running Amazon campaigns, getting decent sales, but something's missing. What if I told you that hidden in your data is the key to unlocking a flood of new customers? That's where New-to-Brand (NTB) analysis comes in – your secret weapon for turning casual browsers into first-time buyers.
What You're About to Learn
How to identify your most effective ASINs for acquiring new customers
The exact metrics that matter (and why)
Step-by-step analysis techniques that will make you look like a data genius
Actionable strategies to optimize your campaigns for new customer acquisition
Let's turn that data into dollars, shall we?
The Foundation: Understanding New-to-Brand Analytics 🎯
What Actually Counts as "New-to-Brand"?
A customer who hasn't bought from your brand in the last 365 days
Purchase must be ad-attributed on Amazon
Must have occurred within the 14-day attribution window
Pro Tip: Always wait two weeks after your campaign ends before running your analysis. Those late-blooming conversions matter!
The Metrics That Actually Matter 📊
Your New Customer Arsenal:
All Users with Purchase
Total number of customers who bought your product
Your baseline for measuring success
NTB Users
Number of first-time customers
Your growth indicator
NTB Percentage
Percentage of new vs. total customers
Your efficiency metric
Gateway ASIN Rank
How your products stack up against each other
Your strategic planning tool
Strategy Deep Dive: Making the Numbers Work for You 🚀
1. Identify Your Gateway Champions
Look for ASINs that are:
Bringing in the highest volume of new customers
Converting at above-average NTB rates
Consistently performing over time
Real-World Example:
Top Performer: ASIN2345 - 72.33% NTB percentage (vs. 56.11% average) - 1.29x more likely to attract new customers - Perfect for new customer acquisition campaigns
2. Optimize for Customer Types
For New Customer Acquisition:
Focus on ASINs with high NTB percentages (60%+)
Test variations of your top-performing NTB ASINs
Allocate higher budgets to proven gateway products
For Customer Retention:
Target ASINs with lower NTB rates (like ASIN5678 at 48.69%)
Perfect for remarketing campaigns
Focus on cross-selling and upselling opportunities
3. Campaign Structure Strategy
New Customer Campaigns:
Isolate high NTB percentage ASINs
Create dedicated campaigns
Optimize bidding for first-time purchases
Test different ad formats
Retention Campaigns:
Group low NTB percentage ASINs
Focus on repeat customer targeting
Emphasize brand loyalty benefits
Test bundle offers
Deep Dive: The Power of Query Analysis 🔍
Query 1: The Exploratory Query
-- Exploratory Query: Exploratory Query for NTB Gateway ASINs --
-- Identify campaigns and campaign_ids.
SELECT
campaign,
CONCAT('campaign_id: ', campaign_id_string) AS campaign_id,
CASE
WHEN ad_product_type IS NULL THEN 'DSP'
ELSE ad_product_type
END AS ad_product_type,
SUM(purchases) AS purchases
FROM
amazon_attributed_events_by_conversion_time
WHERE
(
CUSTOM_PARAMETER('ad_product_type') IS NULL
OR CARDINALITY(CUSTOM_PARAMETER('ad_product_type')) = 0
OR ARRAY_CONTAINS(
CUSTOM_PARAMETER('ad_product_type'),
COALESCE(ad_product_type, 'DSP')
)
)
AND (
(CUSTOM_PARAMETER('tracked_asin') IS NULL)
OR CARDINALITY(CUSTOM_PARAMETER('tracked_asin')) = 0
OR ARRAY_CONTAINS(CUSTOM_PARAMETER('tracked_asin'), tracked_asin)
)
GROUP BY
1,
2,
3
Purpose: This is your reconnaissance mission. Before diving into detailed NTB analysis, this query helps you:
Identify which campaigns exist in your data
Get campaign IDs for filtering
Understand your ad product mix
See purchase volumes across campaigns
How to Use the Results:
Review the campaign list to decide which ones to include/exclude in your NTB analysis
Note campaign IDs for filtering in the main NTB query
Identify which ad product types are driving purchases
Use this information to make informed decisions about filtering in Query 2
Pro Tips:
Run this first to avoid missing important campaigns
Use the results to plan your filtering strategy
Pay attention to DSP vs. non-DSP performance differences
Look for campaigns that might skew your NTB analysis
Query 2: The NTB Gateway ASINs Query
-- Instructional Query: NTB Gateway ASINs --
WITH users AS (
SELECT
advertiser,
tracked_asin,
user_id,
(IF(new_to_brand = TRUE, 1, 0)) AS ntb_users
FROM
amazon_attributed_events_by_conversion_time
WHERE
purchases > 0
AND advertiser IS NOT NULL
AND (
CUSTOM_PARAMETER('campaign_id') IS NULL
OR CARDINALITY(CUSTOM_PARAMETER('campaign_id')) = 0
OR ARRAY_CONTAINS(
CUSTOM_PARAMETER('campaign_id'),
campaign_id_string
)
)
GROUP BY
advertiser,
tracked_asin,
user_id,
new_to_brand
),
asin_ranks AS (
SELECT
advertiser,
tracked_asin,
COUNT(DISTINCT user_id) AS all_users_with_purchase,
SUM(ntb_users) AS ntb_users,
SUM(ntb_users) / COUNT(DISTINCT user_id) * 100 AS ntb_percentage
FROM
users
GROUP BY
advertiser,
tracked_asin
)
SELECT
advertiser,
tracked_asin,
all_users_with_purchase,
ntb_users,
ntb_percentage,
RANK() OVER (
PARTITION BY advertiser
ORDER BY
-- OPTIONAL UPDATE: if you want to rank by ntb_percentage instead of ntb_users, change ntb_users to ntb_percentage.
ntb_users DESC
) AS gateway_asin_rank
FROM
asin_ranks
Customization Options:
Filter by Advertiser:
WHERE advertiser SIMILAR TO 'xxxxxxxx'
Use this when focusing on specific brands
Replace 'xxxxxxxx' with your advertiser pattern
Great for multi-brand analyses
Filter by Campaign:
WHERE campaign in ('campaign_name1', 'campaign_name_2')
Use campaign names/IDs from Query 1
Perfect for analyzing specific campaign types
Helpful for seasonal or promotional analysis
Modify Ranking Logic:
RANK () OVER (PARTITION BY advertiser ORDER BY ntb_users DESC) as gateway_asin_rank.
Choose based on your primary KPI
Volume vs. efficiency trade-off
Different rankings tell different stories
Important Notes:
Without filters, query pulls all advertisers
ASINs are ranked separately for each advertiser
Rankings can be customized based on your KPIs
Always consider seasonal factors when interpreting results
Strategic Applications:
Campaign Analysis:
Identify best-performing ASINs across campaigns
Compare performance across different ad types
Guide budget allocation decisions
Product Strategy:
Find your true gateway products
Identify products better suited for retention
Guide new product development
Customer Acquisition:
Optimize for new customer volume or efficiency
identify products with highest NTB potential
Guide promotional strategy
Making the Most of Both Queries
Step 1: Campaign Overview
Run Query 1 to understand your campaign landscape
Note top-performing campaign types
Identify any underutilized ad products
Step 2: Deep Dive Analysis
Run Query 2 to analyze NTB performance
Cross-reference with Query 1 results
Look for patterns in successful campaigns
Step 3: Strategic Implementation
Adjust campaign structure based on findings
Reallocate budget to high-performing areas
Create new campaigns based on successful patterns
Monitor and iterate monthly
Your Action Plan: Next Steps to Implementation 🎬
Today:
Run the exploratory query to understand your campaign landscape
Identify your top 10 ASINs by NTB users
Calculate your baseline NTB percentage
This Week:
Segment your ASINs into:
New customer acquisition champions (>60% NTB)
Retention products (<50% NTB)
Mixed performers (50-60% NTB)
Begin restructuring campaigns based on NTB performance
This Month:
Create dedicated new customer acquisition campaigns
Test variations of your top NTB ASINs
Monitor and adjust based on performance
Pro Tips for Power Users 💡
Analysis Best Practices:
Always wait 14 days for complete data
Consider seasonal variations in NTB rates
Look for patterns in product categories
Test both volume and percentage-based optimization
Compare performance across different time periods
Account for promotional calendar impacts
The Million-Dollar Questions Answered 🤔
Q: "How often should I run this analysis?" A: Monthly for active campaigns, quarterly for strategic planning.
Q: "What's a good NTB percentage?" A: Industry varies, but aim for 60%+ for acquisition-focused ASINs.
Q: "Should I stop promoting low NTB ASINs?" A: No! Repurpose them for retention campaigns.
Bottom Line: Your Success Metrics ✅
Track these weekly:
Overall NTB percentage trend
Top 3 NTB ASINs performance
Campaign ROI by NTB segment
New vs. repeat customer revenue
Remember: In the world of Amazon advertising, data isn't just numbers – it's your roadmap to growth. Now go forth and conquer those new customers!
P.S. If this analysis helped you find your gateway ASINs, just wait until you see what happens when you actually optimize for them. Your competition won't know what hit them.
Reply