Loading learning content…
Loading learning content…
A practical framework for calculating the return on AI investments — for teams, executives, and anyone who needs to justify AI spend.
Most organizations measure AI ROI wrong in one of two directions: they're either wildly over-optimistic (counting theoretical maximum savings rather than actual ones) or they dismiss AI entirely because they can't assign a number to "better thinking."
The goal of this guide is a defensible, conservative number you can present to a CFO or board. That means: real inputs, conservative assumptions, and a clear methodology.
AI ROI at its simplest:
ROI = (Benefits - Costs) / Costs × 100%
The challenge is measuring benefits accurately. There are three types:
Type 1: Time savings. An AI does something that previously took human time. This is the easiest to quantify.
Type 2: Quality improvement. AI output is better than what you had before, leading to downstream value.
Type 3: Revenue generation. AI enables something you couldn't do before — faster outreach, better personalization, more content.
// Time savings calculator const WEEKLY_HOURS_SAVED = 3; const HOURLY_COST = 75; // fully loaded cost including benefits const WEEKS_PER_YEAR = 52; const AI_COST_PER_YEAR = 600; // subscription + API costs const grossSavings = WEEKLY_HOURS_SAVED * HOURLY_COST * WEEKS_PER_YEAR; const netSavings = grossSavings - AI_COST_PER_YEAR; const roi = ((grossSavings - AI_COST_PER_YEAR) / AI_COST_PER_YEAR) * 100; // grossSavings: $11,700 // netSavings: $11,100 // roi: 1,850%
Many ROI calculations undercount costs. Include all of these:
Direct costs:
Indirect costs:
Risk costs:
A complete cost picture makes your ROI calculation more credible, not less. CFOs trust numbers that don't look cherry-picked.
You can't manage what you don't measure. Set up logging from day one:
With these four numbers, you can calculate weekly ROI on any workflow. Review monthly for the first quarter, then quarterly once the workflow is stable.
Build a simple spreadsheet: volume × time saved per task × hourly cost = gross benefit. API cost + maintenance time cost = total cost. Divide and multiply.
When presenting AI ROI to executives, three principles apply:
Be conservative. If you're uncertain whether a benefit is real, leave it out. Present the floor, not the ceiling. Conservative numbers that hold up in scrutiny are worth more than optimistic numbers that get challenged.
Show the methodology. Don't just present the final number. Show the formula, the inputs, and the assumptions. This builds credibility and allows leadership to adjust assumptions they disagree with rather than rejecting the whole analysis.
Separate proven from projected. Distinguish between ROI you've already achieved (measured) and ROI you expect to achieve (projected). Label projected ROI clearly and state what assumptions it depends on.
A good ROI presentation has four slides: the opportunity, the methodology, the current results (if any), and the projection with assumptions labeled.