Finance & Business
Budgets, variance, margins, commissions, and invoices.
Calculate Budget Variance in Dollars and Percent
Subtract budget from actual to get variance in dollars, then divide by budget to get variance percent for any line item.
=B2-A2Calculate Profit Margin From Revenue and Cost
Divide profit by revenue to get profit margin — the share of every sale you actually keep — and avoid mixing it up with markup.
=(B2-A2)/B2Calculate an Invoice Due Date From Payment Terms
Add your payment terms to the invoice date — like =B2+30 for net-30 — to get due dates that update automatically.
=B2+30Calculate CAGR (Compound Annual Growth Rate)
One formula turns a start value, end value, and number of years into the steady annual growth rate — the honest way to compare growth.
=(B2/A2)^(1/C2)-1Calculate Return on Investment (ROI)
Divide the gain by what you put in — (return − cost) / cost — to see how hard each dollar worked, as a clean percentage.
=(B2-A2)/A2Calculate Gross Profit and Gross Margin
Revenue minus cost of goods gives gross profit in dollars; divide by revenue and you have the margin percentage in the next column.
=B2-A2Calculate Simple Interest on a Loan
Principal × rate × years gives the interest a simple-interest loan charges, and one more step gives the total you'll repay.
=A2*B2*C2Calculate Average Order Value (AOV)
Divide total revenue by the number of orders to get AOV — with an IF guard so months with zero orders don't blow up in #DIV/0!.
=B2/C2Calculate Customer Churn Rate
Customers lost divided by customers at the start of the period gives your churn rate — and 1 minus churn gives retention.
=B2/A2Calculate Runway in Months From Cash and Burn
Cash in the bank divided by monthly burn tells you how many months you can operate — with a guard for the happy case of zero burn.
=A2/B2Convert Currency With a Fixed Exchange Rate
Multiply each amount by an exchange rate stored in one $-anchored cell, so the whole column converts and updates from a single rate.
=A2*$E$1Calculate a Monthly Loan Payment with PMT
PMT returns the fixed monthly payment on a loan from the rate, term, and amount — the fast answer to what a loan costs per month.
=PMT(6%/12,60,-25000)