What You Will Learn
- The precise meaning of metric, KPI, dimension, and measure
- How these four concepts fit together in any analysis
- Why choosing the wrong KPI can lead a whole team astray
- How to design a KPI from scratch
Why This Topic Matters
These four words appear in every analytics meeting, every dashboard, every SQL query, and every report. If you confuse them, you will confuse everyone around you. Worse, you will design dashboards that look impressive but answer no useful question. Getting these definitions precise is the difference between sounding like an analyst and sounding like a beginner.
The Four Words, Defined
Measure
A measure is a numeric value you can compute on. It is something you can sum, average, or count.
- Order amount (₹499)
- Delivery time (32 minutes)
- Number of items in an order (3)
- Star rating (4)
Measures are quantitative — they are the "how much" columns from lesson 03.
Metric
A metric is a measure combined with a calculation and a context. It is the answer to a specific business question.
- "Average order amount this month" →
SUM(amount) / COUNT(orders)for the current month - "Late delivery rate last week" →
COUNT(late) / COUNT(all) * 100for last week - "Daily active users" →
COUNT(DISTINCT user_id)per day
Every metric is built from measures + a calculation + a scope (time range, segment).
KPI (Key Performance Indicator)
A KPI is a metric that has been chosen as the number a team watches to know if they are winning or losing. It is a metric with a goal attached.
- Metric: "Late delivery rate last week = 31%"
- KPI: "Late delivery rate must stay below 10%"
The metric is the number; the KPI is the number plus the target. A KPI is always tied to a goal — without a target, it is just a metric.
Dimension
A dimension is a categorical column you use to slice or group measures. It is the "by what" of analysis.
- By city (Mumbai, Delhi, Bengaluru)
- By product category (Electronics, Grocery, Clothing)
- By time period (day, week, month)
- By customer type (new, returning)
Dimensions are qualitative — they are the labels you group measures by.
How They Fit Together
Almost every analysis has this shape:
[Measure] aggregated by [Dimension] over [Time period] = a [Metric]
Examples:
- SUM(order_amount) BY city FOR this month = "Revenue by city this month"
- AVG(delivery_time) BY store FOR last 7 days = "Average delivery time by store (7d)"
- COUNT(distinct users) BY day FOR last 30 days = "Daily active users (30d trend)"
When one of these metrics gets a target ("DAU must be >= 10,000"), it becomes a KPI.
Real-World Example: An E-commerce Dashboard
| Column in raw data | Measure or Dimension? | Used in which metric? |
|---|---|---|
| order_amount | Measure | Total revenue, average order value |
| order_id | Dimension (or counted) | Order count, distinct customers |
| customer_id | Dimension | Distinct customers, repeat rate |
| city | Dimension | Revenue by city, orders by city |
| product_category | Dimension | Revenue by category |
| ordered_at | Dimension (time) | Revenue by day, by week, by month |
| is_returned | Dimension (boolean) | Return rate |
From these raw columns you can build dozens of metrics. Pick the few that matter most to the business — those become KPIs.
How to Design a KPI
A good KPI has five properties. Use this checklist every time:
- Measurable. You can compute it from data you actually have.
- Goal-aligned. It connects to a real business outcome (revenue, retention, cost).
- Has a target. "Revenue" is a metric. "Revenue ≥ ₹10 lakh/month" is a KPI.
- Has a time window. Daily, weekly, monthly — pick one explicitly.
- Cannot be easily gamed. If you measure "tickets closed", people will close tickets fast without solving them. Measure "customer satisfaction with resolution" instead.
Worked example
Bad KPI: "Increase customer satisfaction." (Not measurable, no target, no time window.)
Better: "Raise the average post-delivery rating from 4.1 to 4.4 within 90 days."
Bad KPI: "Reduce delivery time." (Vague, no target.)
Better: "Bring median delivery time below 35 minutes in every city by end of Q3."
Median vs Mean for KPIs
Notice the second example uses median, not average. This is intentional. A few extremely late deliveries will pull the average up dramatically, but most customers may still be getting fast deliveries. Median reflects the typical customer experience better. We cover this in lesson 29 — Mean, Median, and Mode.
Choosing Dimensions Wisely
Beginners often slice every metric by every dimension. The result is a dashboard with 200 numbers and no insight. Pick dimensions that map to actions you can take:
- If you can hire riders in a specific city → slice by city.
- If you can change prices per category → slice by category.
- If you can change marketing per channel → slice by channel.
Do not slice by dimensions you cannot act on. They produce numbers you cannot use.
Common Mistakes
- Calling every number a KPI. A KPI has a target. No target, no KPI.
- Using measures as dimensions. "Revenue by revenue" makes no sense. Revenue is a measure.
- Choosing KPIs that can be gamed. If you reward "tickets closed per hour", support staff will close easy tickets and ignore hard ones.
- Tracking too many KPIs. Three to five KPIs is ideal. Twenty is a dashboard nobody reads.
- Forgetting the time window. "Revenue = ₹4L" is meaningless without "this week" or "this month".
Practical Exercise (10 minutes)
Pick any business you know — your local shop, a food truck, your school canteen. Write down:
- Three measures they might track (e.g., daily sales in rupees, number of customers).
- Two dimensions they might slice by (e.g., product, time of day).
- Two metrics built from those (e.g., average sale per customer).
- One KPI with a specific target and time window (e.g., "average sale per customer ≥ ₹150 this month").
Mini Challenge
Find any public dashboard (e.g., a COVID tracker, a weather site, a stock screener). Identify: which numbers are measures, which are metrics, which are KPIs, and which dimensions are used to slice them. You will find that even well-designed dashboards mix these up loosely — but the structure is always there underneath.
Key Takeaways
- Measure = a numeric value (e.g., order amount).
- Metric = measure + calculation + scope (e.g., total revenue this month).
- KPI = metric + target (e.g., revenue ≥ ₹10L/month).
- Dimension = a category you slice by (e.g., city, product category).
- Every analysis has the shape: measure × dimension × time = metric.
Previously learned: Lesson 07 introduced analytics; lesson 08 covered the four types.
Today: You learned the four words analysts use to design any analysis.
Next: Lesson 10 shows how to take a vague business question and turn it into something measurable using these four concepts.
FAQ
What is the difference between a metric and a measure?
A measure is a single numeric value (₹499). A metric is a measure combined with a calculation and a context (average order value this month = ₹487). All metrics are built from measures, but not every measure is a metric.
How many KPIs should a team have?
Usually 3–5. More than that and nobody can focus. If you find yourself with 20 KPIs, you probably have 20 metrics and no real KPIs. Force-rank and pick the few that matter most to the business outcome.
Comments
Comments
Post a Comment