Guide2026-07-204 min read

How to Calculate Percentage Increase and Decrease for Design & Financial Metrics

A clear step-by-step guide to calculating percentage increase, percentage decrease, and percentage change for web performance, design assets, and analytics.

How to Calculate Percentage Increase and Decrease for Design & Financial Metrics

Whether you are analyzing web traffic analytics, calculating image file size reductions after compression, adjusting UI layout dimensions, or evaluating marketing conversion rates, calculating percentage changes is a fundamental skill.

What is the exact percentage decrease when an image is compressed from 4 MB to 800 KB? How do you calculate a percentage increase in site visitors from 12,000 to 18,500 monthly users?

In this practical mathematical guide, we break down the formulas for Percentage Increase, Percentage Decrease, and Overall Percentage Change, complete with real-world design, web performance, and financial examples.


1. What is Percentage Change?

A percentage represents a fraction or ratio expressed as a portion out of 100 (from the Latin per centum, meaning "by the hundred").

Percentage Change measures the relative difference between an original baseline value ($V_{\text{initial}}$) and a new updated value ($V_{\text{final}}$):

$$\text{Percentage Change} = \left( \frac{V_{\text{final}} - V_{\text{initial}}}{V_{\text{initial}}} \right) \times 100%$$

  • Positive Result ($+$): Indicates a Percentage Increase.
  • Negative Result ($-$): Indicates a Percentage Decrease.

2. How to Calculate Percentage Increase

Use the Percentage Increase formula when a quantity grows from a smaller initial value to a larger final value.

$$\text{Percentage Increase} = \left( \frac{\text{New Value} - \text{Original Value}}{\text{Original Value}} \right) \times 100%$$

Step 1: Subtract Original Value from New Value (Find Difference).
Step 2: Divide the Difference by the Original Value.
Step 3: Multiply the decimal by 100 to get Percentage (%).

Real-World Example 1: Web Traffic Growth

Suppose your website received 12,000 monthly visitors in June, and traffic increased to 18,600 visitors in July. What is the percentage increase in traffic?

  1. Find Absolute Difference: $18,600 - 12,000 = 6,600$
  2. Divide by Original Baseline: $\frac{6,600}{12,000} = 0.55$
  3. Convert to Percentage: $0.55 \times 100% = \mathbf{55%}$

Monthly web traffic increased by 55%.


3. How to Calculate Percentage Decrease

Use the Percentage Decrease formula when a quantity shrinks from a larger initial value to a smaller final value.

$$\text{Percentage Decrease} = \left( \frac{\text{Original Value} - \text{New Value}}{\text{Original Value}} \right) \times 100%$$

Real-World Example 2: Web Image File Size Optimization

Suppose an uncompressed PNG banner has a file size of 4.5 MB, and after converting it to WebP format, the file size shrinks to 0.9 MB. What is the percentage reduction in payload size?

  1. Find Absolute Difference: $4.5\text{ MB} - 0.9\text{ MB} = 3.6\text{ MB}$
  2. Divide by Original Baseline: $\frac{3.6}{4.5} = 0.80$
  3. Convert to Percentage: $0.80 \times 100% = \mathbf{80%}$

The image file size was reduced by 80%, drastically improving page load speed!


4. Reverse Calculations: Finding Values After Percentage Changes

A. Calculating a Price or Value After a Percentage Increase

To increase a number by $X%$, multiply the original number by $(1 + \frac{X}{100})$:

$$\text{Increased Value} = \text{Original Value} \times \left(1 + \frac{\text{Percentage}}{100}\right)$$

  • Example: Increase a $150\text{px}$ container width by $20%$: $$150 \times (1 + 0.20) = 150 \times 1.20 = \mathbf{180\text{px}}$$

B. Calculating a Discount or Value After a Percentage Decrease

To decrease a number by $X%$, multiply the original number by $(1 - \frac{X}{100})$:

$$\text{Decreased Value} = \text{Original Value} \times \left(1 - \frac{\text{Percentage}}{100}\right)$$

  • Example: Apply a $15%$ layout reduction to a $1200\text{px}$ container: $$1200 \times (1 - 0.15) = 1200 \times 0.85 = \mathbf{1020\text{px}}$$

5. Summary Cheat Sheet

| Calculation Target | Formula | | :--- | :--- | | Percentage Increase | $\left( \frac{\text{New} - \text{Original}}{\text{Original}} \right) \times 100$ | | Percentage Decrease | $\left( \frac{\text{Original} - \text{New}}{\text{Original}} \right) \times 100$ | | Value After $X%$ Increase | $\text{Original} \times (1 + \frac{X}{100})$ | | Value After $X%$ Decrease | $\text{Original} \times (1 - \frac{X}{100})$ |


Transform Metrics Text & Calculate Ratios

Formatting statistical reports or design metrics? Use our free Case Converter & Text Tool to adjust title casing, or compute layout ratios using our client-side Percentage & Ratio Calculator!