Required Datapoints
- Survey Sample Size: Number of respondents shown the brand list.
- Respondents Selecting Your Brand: Number who recognized your brand.
- Prompt Format: The list of brands presented.
- Survey Timing: Often tracked pre- and post-campaign.
Aided Brand Recall measures the percentage of respondents who recognize your brand when prompted with a list of competitors. It helps assess brand awareness and marketing effectiveness.
Aided Brand Recall is a survey-based metric that captures brand salience and mental availability, measuring how often people recognize your brand when prompted among competitors. It’s a vital input for category awareness and positioning strength.
The relevance and interpretation of this metric shift depending on the model or product:
A high score reflects strong campaign impact and brand resonance. A low score means you may be underinvested in awareness or being outshouted by competitors.
Segment by persona, region, or buying stage to refine campaigns and messaging strategies.
Aided Brand Recall informs:
These are the main factors that directly impact the metric. Understanding these lets you know what levers you can pull to improve the outcome
Actionable ideas to optimize this KPI, from fast, low-effort wins to strategic initiatives that drive measurable impact.
Activities commonly tied to improving or operationalizing this KPI.
| Activity | Description |
|---|---|
| Brand Tracking | Brand Tracking involves the systematic collection, analysis, and interpretation of data to evaluate how a brand is perceived in the market over time. It turns signals into decisions, interventions, and measurable follow-up. Relevant KPIs include Aided Brand Recall (Survey-Based). |
| Pre/Post Campaign Testing | Pre/Post Campaign Testing involves systematically measuring key performance indicators (KPIs) and business metrics before and after a go-to-market (GTM) campaign to evaluate its effectiveness. It coordinates execution across touchpoints so teams can move users or accounts toward the target outcome. Relevant KPIs include Aided Brand Recall (Survey-Based). |
| Market Research | Market Research focuses on Systematically collecting, analyzing, and synthesizing qualitative and quantitative information about target customers, competitors, market trends, and user needs enables teams to make data-driven decisions regarding product development, positioning, messaging, and sales strategies. It helps teams translate strategy into repeatable execution. Relevant KPIs include Aided Brand Recall (Survey-Based). |
| Brand Recall Surveys | Brand Recall Surveys involves systematically measuring how well target audiences recognize, recall, and associate specific attributes with a brand. It helps teams translate strategy into repeatable execution. Relevant KPIs include Aided Brand Recall (Survey-Based). |
A brand survey with 1,000 B2B respondents:
This KPI is associated with the following stages in the AAARRR (Pirate Metrics) funnel:
This KPI is classified as a lagging Indicator. It reflects the results of past actions or behaviors and is used to validate performance or assess the impact of previous strategies.
This role is directly accountable for the KPI and is expected to drive progress and decisions around it.
These roles contribute directly to performance and typically partner on execution, reporting, or optimization.
These roles should stay informed on changes in the KPI because it influences adjacent planning, coordination, or outcomes.
These leading indicators influence this KPI and act as early signals that forecast future changes in this KPI.
These lagging indicators confirm, quantify, or amplify this KPI and help explain the broader business impact on this KPI after the fact.
How this KPI is structured in Cube.js, including its key measures, dimensions, and calculation logic for consistent reporting.
cube('SurveyResponses', { sql: `SELECT * FROM survey_responses`, measures: { aidedBrandRecall: { sql: `respondents_selecting_your_brand / survey_sample_size * 100`, type: 'number', title: 'Aided Brand Recall', description: 'Percentage of respondents who recognize the brand when prompted with a list of competitors.' }, surveySampleSize: { sql: `survey_sample_size`, type: 'sum', title: 'Survey Sample Size', description: 'Total number of respondents shown the brand list.' }, respondentsSelectingYourBrand: { sql: `respondents_selecting_your_brand`, type: 'sum', title: 'Respondents Selecting Your Brand', description: 'Number of respondents who recognized your brand.' } }, dimensions: { id: { sql: `id`, type: 'number', primaryKey: true }, promptFormat: { sql: `prompt_format`, type: 'string', title: 'Prompt Format', description: 'The list of brands presented to respondents.' }, surveyTiming: { sql: `survey_timing`, type: 'time', title: 'Survey Timing', description: 'The timing of the survey, often tracked pre- and post-campaign.' } }})Note: This is a reference implementation and should be used as a starting point. You’ll need to adapt it to match your own data model and schema