Relative Change Calculator logo

Relative Change in Excel

Spreadsheets remain the lingua franca of finance rotations; reliable formulas stop divide-by-zero explosions before leadership reviews.

By Relative Change Calculator Published May 3, 2026

Quick answer

Enter originals in column A, news in column B, then use =(B2-A2)/A2 for fractional relative change; apply Percent number format or multiply manually by 100 inside the formula when you prefer whole-percent cells.

=(B2-A2)/A2
or =(B2/A2)-1

Introduction

Excel amplifies human mistakes at scale; bake defensive logic before sharing templates.

Compare spreadsheet outputs with the homepage calculator whenever templates reboot.

Main content

What is it?

Excel expresses relative change through simple cell algebra referencing baseline rows.

Shared workbooks demand locked assumptions documentation beside formulas.

Formula

Wrap formulas with IFERROR only after deciding substitute messaging.

Tables referencing structured references behave identically but read cleaner.

=IF(A2=0,"undefined",(B2-A2)/A2)

Step-by-step guide

Workbook hygiene.

  1. Label columns. Original versus New in row 1.
  2. Enter formula. Prefer explicit subtraction before division.
  3. Format. Choose Percent or General deliberately.
  4. Copy down. Ensure relative references march row-by-row.
  5. Protect. Lock baseline cells if dashboards feed executives.

Example

Rows list weekly revenue; column C uses =(B3-B2)/B2 to compare each week with its immediate predecessor, highlighting sequential relative change rather than a fixed baseline.

Switching to a fixed baseline requires anchoring denominators with dollar signs such as $B$2.

FAQ

Should I multiply by 100 inside Excel?

Either multiply explicitly or rely on Percent formatting; mixing both doubles scaling by mistake.

How do Google Sheets differ?

Syntax matches closely; ARRAYFORMULA enables vectorized guards.

What about Power BI?

Use DAX divide-safe patterns there; concepts mirror Excel logic.

Conclusion

Excel rewards disciplined references plus documented baselines.

Loop back to how to calculate relative change whenever workflow debates flare.