# Measuring the Value of an Intangible Product
A strategy firm delivered a 90-page report recommending a new pricing model. The client thanked them, paid the invoice, and never called back. Eighteen months later, the client's revenue was up 12 percent. Was that the firm's advice? The economy? A new sales leader? Nobody could say. The firm had no way to prove it created a dollar of value, which meant it had no way to defend its fees or win the follow-on work.
This is the core problem of professional services: you sell judgment, insight, and hours. None of it sits in a warehouse. You cannot weigh it, count it, or point to a shelf. So how do you measure the value of something you cannot inventory?
In manufacturing, value is obvious: units produced, defect rate, cost per unit. In professional services (consulting, law, accounting, agencies, engineering advisory), the "product" is a recommendation or a deliverable whose effect shows up later, mixed with everything else the client is doing.
Three things make measurement hard:
The goal is not perfect proof. It is a credible, consistent chain of evidence linking what you put in to what the client got out.
Think of measurement in four connected layers. Each layer is easier to capture than the one after it, and each gives partial evidence of value.
These are the easiest to track and the least meaningful on their own.
A common trap: firms manage only these because they are convenient. High utilization tells you people are busy, not that clients got value.
Did you produce the deliverable on time, on scope, and to a defensible standard?
A law firm can track motions filed on deadline. An audit team can track findings raised versus missed in later review. These are process quality signals, still upstream of client impact.
This is the layer that proves value, and the one firms skip. You must define, at the start of the engagement, the metric the client cares about.
Examples of outcome metrics by service:
The discipline is agreeing the metric before the work starts, and agreeing how you will attribute a share of it.
Value the client received should eventually show up as value to the firm.
Satisfied clients who saw measurable outcomes buy again and refer. That behavior is itself evidence of value.
You will never get a lab-grade number. You can get an honest one. Three practical methods:
Baseline and target. Record the client's starting metric, agree a target, measure the actual. State plainly which portion is plausibly yours.
Attribution share, agreed up front. Write into the engagement letter that a defined percentage of realized savings is attributed to the work. This is negotiated, not scientific, but it aligns everyone.
Client-confirmed value. After the engagement, ask the client's sponsor to confirm, in writing, the outcome and their view of your contribution. A signed value statement is more persuasive to future buyers than any internal model.
For a structured way to think about linking inputs to outcomes, the classic logic model framework from public program evaluation translates directly: inputs, activities, outputs, outcomes, impact.
Outcomes take months. Satisfaction can be measured now, and it predicts future account economics.
The most common tool is Net Promoter Score (NPS), which asks how likely a client is to recommend you on a 0 to 10 scale, then subtracts the percentage of detractors (0 to 6) from promoters (9 to 10). It is a rough gauge, not a precise one, but it is cheap and comparable over time.
Pair it with a specific question: "Did this engagement deliver the value you expected?" Track responses by partner, by service line, and by client. A falling score on a large account is an early warning that renewal is at risk, long before revenue shows it.
🎬 [VIDEO: "The Value of Professional Services" — youtube.com — a concise walkthrough of how service firms connect delivery to client outcomes]
You do not need a data science team. You need one table per engagement, joined to your finance and CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.View full definition → systems. A minimal schemaschemaA schema is the formal blueprint that defines how data is structured, named, typed, and related within a database, file, or message.View full definition →:
-- One row per engagement, linking cost, quality, outcome, and value
SELECT
e.engagement_id,
e.client_id,
e.service_line,
e.fees_collected,
e.cost_to_serve,
e.fees_collected - e.cost_to_serve AS margin,
q.on_time_flag,
q.rework_count,
o.outcome_metric_name,
o.baseline_value,
o.actual_value,
o.attribution_pct,
(o.actual_value - o.baseline_value)
* o.attribution_pct AS attributed_client_value,
s.nps_score,
s.value_confirmed_flag
FROM engagements e
LEFT JOIN quality q ON q.engagement_id = e.engagement_id
LEFT JOIN outcomes o ON o.engagement_id = e.engagement_id
LEFT JOIN survey s ON s.engagement_id = e.engagement_id;Once this exists, you can answer the questions that matter: Which service lines create the most confirmed client value per dollar of cost? Do engagements with confirmed value renew at higher rates? Where is high effort producing low outcomes?
The strategy firm from the opening had none of this. Had they recorded a baseline, an agreed attributionattributionA framework for assigning credit to the touchpoints that contributed to a conversion, so you can measure which channels and interactions actually drive results.View full definition → share, and a signed value statement, the 12 percent revenue lift would have been a case study, not a guess.
Knowledge check
1. Why is measuring the value of a professional services deliverable fundamentally harder than measuring value in manufacturing?
2. The lesson states the goal of measurement is not 'perfect proof' but a 'credible, consistent chain of evidence.' What does this reasoning imply?
3. A consultant argues that because a client's revenue rose after an engagement, the firm clearly created that value. Which measurement challenge most directly undermines this claim?
4. Select ALL correct answers. Which factors make the value of an intangible professional services product genuinely hard to measure?
Select all the correct answers.
5. Select ALL correct answers. Which statements accurately describe engagement inputs (the first layer of the value chain)?
Select all the correct answers.
Start small. Pick one service line. For every new engagement:
1. Agree the client outcome metric and baseline in the engagement letter.
2. Record cost to serve, not just fees.
3. Send a two-question satisfaction survey at close.
4. Request a written value confirmation 6 to 12 months later.
Within a year you will have a defensible portfolio of value evidence. That evidence does three things: it justifies premium pricing, it flags at-risk accounts early, and it turns your best work into proof you can sell.
Beware two failure modes. Vanity metrics: reporting utilization and hours because they are easy, while ignoring outcomes. False precision: claiming you drove exactly 8.4 percent of a client's growth. Buyers trust an honest, stated attributionattributionA framework for assigning credit to the touchpoints that contributed to a conversion, so you can measure which channels and interactions actually drive results.View full definition → share far more than a suspiciously exact figure.