Firmographic vs. Technographic Enrichment: What Actually Moves the Needle for B2B SDRs
Both firmographic signals (headcount, ARR band, funding stage) and technographic signals (current stack, recent tool additions) matter — but they move different conversion levers at different pipeline stages. Here's how to use each one in your Salesforce routing logic.
Two Signal Types, Two Different Jobs
Firmographic and technographic data aren't competitors — they're inputs into different parts of the same qualification decision. The mistake most RevOps teams make isn't using one and ignoring the other; it's treating both as interchangeable inputs into a single ICP score without understanding which signal predicts which conversion event.
Firmographic signals — employee headcount, estimated ARR band, funding stage, geographic HQ, industry vertical — tell you whether a company could buy. They're fit indicators. A 15-person startup probably can't buy an enterprise contract; a 500-person company with recent funding probably can. Firmographic data is also relatively slow-moving. Headcount doesn't shift week to week; industry vertical almost never changes. These signals are most valuable for routing and initial prioritization decisions.
Technographic signals — which tools a company currently runs, which tools they recently added or removed, which integrations appear in their job postings — tell you whether a company is in motion. They're intent and context indicators. A company that just added a Salesforce implementation partner on LinkedIn is actively building out their CRM stack. A company that recently dropped Marketo from their tech stack is evaluating marketing automation alternatives. Technographic data is faster-moving and more perishable than firmographic data, which is why timing matters so much more when consuming it.
Where Each Signal Type Earns Its Weight in the Pipeline
Top of Funnel: Firmographic Wins
At the moment an inbound lead submits a form, firmographic signals carry the most immediate routing value. The fundamental question — does this company fit our customer profile? — is answered primarily by firmographic data. Headcount band determines territory (SMB vs. mid-market vs. enterprise). Industry vertical determines which rep specialization the lead should route to. Funding recency determines budget signal and urgency. All three of these routing decisions need to fire before the SDR picks up the phone, and all three are firmographic.
Technographic signals are available at this stage, but they're most useful for SDR preparation context rather than initial routing. Knowing that the prospect runs HubSpot instead of Salesforce doesn't change which rep handles the call — it changes how the rep positions the conversation. The signal earns its value in the prep phase, not the routing phase.
Mid-Funnel: Technographic Shifts the Weight
Once a lead has been routed and the SDR has made contact, the qualifying conversation depends heavily on technographic context. The SDR's two most critical mid-funnel tasks — establishing problem fit and identifying competitive landscape — both benefit from tech stack visibility.
Consider an SDR calling a VP of Operations at a 200-person B2B software company. Firmographic data tells them the company is the right size and industry. Technographic data tells them the company currently runs Salesforce CRM with a native HubSpot marketing integration, recently posted a job for a RevOps manager, and added Clay to their tech stack three months ago. This context tells the SDR that the team is actively building out their revenue stack, has a person focused on operations being hired, and is already investing in enrichment-adjacent tooling. The conversation about lead enrichment latency is going to land very differently than it would cold.
This is where technographic delta signals — not just what a company runs today, but what changed recently — become particularly valuable. A company that added a sales engagement platform six months ago is at a different stage of sophistication than one that has run the same stack for three years. The delta is the intent signal; the snapshot is just context.
The Scoring Trap: Treating Both Signals as Equivalent Inputs
Many ICP scoring models weight firmographic and technographic signals in the same dimension — a single composite score where headcount, ARR band, industry, tech stack, and funding all contribute points toward a fit tier. This architecture is convenient and produces reasonably consistent scores, but it obscures an important asymmetry: firmographic data is relatively static and reliable, while technographic data is dynamic and sometimes noisy.
When you fold both into a single score without decay logic, you run two risks. First, a company that fits perfectly on firmographic dimensions but has an incomplete technographic footprint gets scored down for a data coverage issue rather than a fit issue. Second, a company that had a relevant tech stack signal three months ago gets the same score as one that showed the signal last week — even though the three-month-old signal is substantially less predictive of active buying behavior.
We are not saying technographic signals shouldn't be in your ICP score. What we are saying is that they should carry a freshness weight that decays over time — a technographic signal observed last week should score higher than the same signal observed four months ago. Static scoring models can't do this without periodic recomputation.
A better architecture separates the two signal types into parallel dimensions: a firmographic fit score (stable, updates on data refresh) and a technographic momentum score (time-decayed, reflects recency of observed changes). The routing rule can then use both dimensions independently — "route to enterprise rep if firmographic_fit_score >= 70 AND route to tech-stack-specific sequence if technographic_momentum_score >= 60 AND tech_stack includes 'Salesforce'."
Practical Salesforce Implementation: Separate Fields, One Routing Rule
In Salesforce, the cleanest implementation of this architecture uses two custom fields on the Lead object: Salmon__FirmographicFitScore__c (number, 0–100) and Salmon__TechMomentumScore__c (number, 0–100). The routing assignment rule can reference both independently without needing a composite score field that obscures the underlying signal breakdown.
/* Salesforce SOQL — find leads where both dimensions are strong */
SELECT Id, Name, Company, Email,
Salmon__FirmographicFitScore__c,
Salmon__TechMomentumScore__c,
Salmon__InstalledTechStack__c,
Salmon__FundingRecencyDays__c
FROM Lead
WHERE Salmon__FirmographicFitScore__c >= 70
AND Salmon__TechMomentumScore__c >= 55
AND Salmon__FundingRecencyDays__c <= 180
AND IsConverted = false
ORDER BY Salmon__FirmographicFitScore__c DESC,
Salmon__TechMomentumScore__c DESC
LIMIT 50
This query gives you a working view for daily SDR prioritization: leads that are both firmographically qualified and showing recent technographic momentum, with funding recency as an additional filter. SDRs reviewing this list know immediately that every lead on it has passed two independent qualification bars, not a single blended score that might be hiding a weak dimension.
The Coverage Problem Neither Signal Type Fully Solves
It's worth being honest about a limitation that affects both signal types at different rates. Firmographic data coverage is generally high for established companies — headcount, HQ, and industry can usually be resolved from public sources for any company incorporated more than 18 months ago. Technographic coverage is harder. Companies that maintain a minimal public web footprint, don't post technology-specific job listings, and use few external integrations can be effectively technographically invisible to any enrichment layer, including ours.
For these records — which tend to cluster in certain verticals like professional services, regional manufacturing, and owner-operated businesses — over-relying on technographic signals in your ICP score will systematically under-score firms that might actually be good fits. The safer approach is to treat a low technographic score as "insufficient data" rather than "low intent" when the firmographic fit is strong. If a company looks right on every firmographic dimension, the absence of technographic data shouldn't penalize it below routing threshold.
The scoring architecture in Salmon's ICP model handles this with a coverage flag: if technographic data is below a confidence threshold, the momentum score defaults to neutral (50) rather than zero, so the record routes based primarily on firmographic fit. The SDR gets the lead with a note that technographic enrichment had limited coverage — actionable information, not a silently downscored record.
If you're setting up a Salesforce routing model that uses both signal dimensions, the Salesforce integration guide covers the specific field mapping Salmon writes and how to reference both score dimensions in assignment rule criteria.