Required Datapoints
- Total Number of Sales Discovery / Qualification Calls
- Calls Where the Prospect Mentioned the Brand Unprompted
- Call transcripts or notes with keyword flagging
Sales Call Brand Mention Rate measures the percentage of sales calls where prospects mention your brand, product, or company unprompted. It helps assess brand recall and the influence of pre-funnel exposure.
Sales Call Brand Mention Rate is a key indicator of brand awareness and pre-funnel marketing effectiveness, reflecting how often your brand is brought up organically during early-stage sales conversations.
The relevance and interpretation of this metric shift depending on the model or product:
A rising brand mention rate typically signals stronger top-of-funnel influence, while a declining trend may reveal disconnected messaging or visibility gaps. This helps teams optimize brand investments and connect marketing efforts to real pipeline movement.
By segmenting by persona, campaign cohort, or source channel, you unlock insights for prioritizing brand-building activities, aligning sales talk tracks, and understanding where brand presence is converting to conversations.
Sales Call Brand Mention Rate 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 |
|---|---|
| Sales Call Analysis | Sales Call Analysis focuses on systematically reviewing recorded or transcribed sales calls, product demos, and customer conversations. It turns signals into decisions, interventions, and measurable follow-up. Relevant KPIs include Sales Call Brand Mention Rate. |
| Brand Campaigns | Brand Campaigns focuses on planning, executing, and optimizing targeted brand initiatives to increase market awareness, shape perception, and drive engagement with the company’s products or solutions. It coordinates execution across touchpoints so teams can move users or accounts toward the target outcome. Relevant KPIs include Brand Awareness Lift and Branded Search Volume. |
| Thought Leadership | Thought Leadership involves positioning an organization or individual as a trusted authority and visionary within their field. It helps teams translate strategy into repeatable execution. Relevant KPIs include Organic Content Shares and Sales Call Brand Mention Rate. |
| Community Building | Community Building focuses on strategically nurturing meaningful connections among customers, prospects, partners, and internal teams. It helps teams translate strategy into repeatable execution. Relevant KPIs include Customer Loyalty and Daily Active Users. |
| Messaging Alignment | Messaging Alignment is the deliberate coordination and alignment of core value propositions, product positioning, and communication narratives across all customer-facing functions. It helps teams translate strategy into repeatable execution. Relevant KPIs include Sales Call Brand Mention Rate. |
300 discovery calls in April
102 calls included unprompted brand mentions
Formula: 102 ÷ 300 = 34% Brand Mention Rate
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 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('SalesCalls', { sql: `SELECT * FROM sales_calls`,
measures: { totalCalls: { sql: `total_calls`, type: 'sum', title: 'Total Number of Sales Discovery / Qualification Calls', description: 'Total number of sales discovery or qualification calls made.' }, brandMentionedCalls: { sql: `brand_mentioned_calls`, type: 'sum', title: 'Calls Where the Prospect Mentioned the Brand Unprompted', description: 'Number of calls where the prospect mentioned the brand unprompted.' }, brandMentionRate: { sql: `100.0 * ${brandMentionedCalls} / NULLIF(${totalCalls}, 0)`, type: 'number', title: 'Sales Call Brand Mention Rate', description: 'Percentage of sales calls where prospects mention the brand unprompted.' } },
dimensions: { id: { sql: `id`, type: 'number', primaryKey: true, title: 'ID', description: 'Unique identifier for each sales call record.' }, callDate: { sql: `call_date`, type: 'time', title: 'Call Date', description: 'Date when the sales call took place.' }, prospectName: { sql: `prospect_name`, type: 'string', title: 'Prospect Name', description: 'Name of the prospect involved in the sales call.' } }});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