Product-market fit is not a binary milestone — it is a measurable state where your product solves a problem so well that users return organically and tell others. This guide presents a quantifiable framework for measuring PMF, including the Supergraphic metric, cohort retention analysis, the Sean Ellis test, and specific action plans for when you have not yet found fit. The techniques described here were used in the development of , the initial assumption was that the product would appeal to all React developers building SaaS. Cohort analysis told a different story:
Cohort Analysis (Early Stage):
┌────────────┬──────────┬──────────┬──────────┐
│ Cohort │ D1 │ D7 │ D30 │
├────────────┼──────────┼──────────┼──────────┤
│ 2025-Q3 │ 82% │ 52% │ 18% │
│ 2025-Q4 │ 85% │ 58% │ 22% │
│ 2026-Q1 │ 88% │ 62% │ 35% │
│ 2026-Q2 │ 91% │ 71% │ 48% │
└────────────┴──────────┴──────────┴──────────┘
The key insight from user interviews: users who were solo founders or small teams building their first SaaS had significantly higher retention than users evaluating it as part of an enterprise stack. We narrowed messaging, documentation, and feature development to serve the solo founder segment first.
Measuring PMF With Your Analytics Infrastructure
If you have built UTM and event tracking into your SaaS (as TanStack Ship provides), you can automate PMF measurement:
// Automate PMF dashboard with worker cron
export const generatePmfReport = createServerFn({ method: "GET" }).handler(
async ({}, { context }) => {
const [retention, survey, usage] = await Promise.all([
getCohortRetention(),
getPmfSurveyResults(),
getCoreFeatureAdoption(),
])
return {
supergraphic: retention,
seanEllisScore: survey.veryDisappointedPercent,
dailyActiveUsers: usage.dau,
weeklyActiveUsers: usage.wau,
recommendation: survey.veryDisappointedPercent > 40
? "Scale acquisition"
: survey.veryDisappointedPercent > 25
? "Deepen engagement"
: "Investigate pivot",
}
}
)
Conclusion
Product-market fit is not magic — it is measurable. The Supergraphic shows you at a glance whether your retention curve is flattening. The Sean Ellis survey tells you whether users would miss your product. Cohort analysis reveals which segments love you and which do not.
The framework is simple but not easy:
Measure cohort retention weekly
Survey users at the 2-week mark
Segment power users and analyze their behavior
Act on the data — narrow, deepen, or pivot
Most startups fail not because they never find PMF, but because they give up too early or pivot too late. A systematic, data-driven approach removes the guesswork.
For a SaaS starter with built-in analytics and cohort tracking infrastructure, see
SOCIAL SHARE CARD GENERATOR