ROI calculator is a finance tool that measures return on investment for any cost-versus-gain scenario. It supports simple ROI, annualized ROI for multi-year holdings, and marketing ROI for ad spend, and outputs the percentage, net gain, and multiplier on the original outlay. The tool runs in your browser.
Calculation mode
Currency
Formula: ROI % = ((gain - cost) / cost) x 100
ROI calculators with the right mode pre-selected.
((gain - cost) / cost) * 100. Annualized ROI uses the CAGR formula ((gain / cost)^(1 / years) - 1) * 100. Marketing ROI ((revenue - spend) / spend) * 100; ROAS is revenue / spend.Math.pow for the CAGR exponent; no external library.Infinity or NaN when cost is zero. Ignores taxes, fees, inflation, and risk-adjusted measures (e.g., Sharpe ratio).Calculations are estimates for informational purposes only. Consult a financial professional for advice.
Reviewed and tested May 25, 2026.