How to Calculate Reverse Percentage in Google Sheets

Published on

This tutorial answers how to calculate reverse percentage in Google Sheets.

Below, you’ll find three formulas to calculate the reverse percentage in Google Sheets. Wondering why there are three?

It’s because the formulas vary depending on your requirement, though their purpose is the same: to work backward to find the original number.

Let’s look at an example.

Suppose the price of an item is $100.00. Last month, the vendor was offering a 15% discount on it. Now, instead of a discount, the price has increased by 15%.

So, we have three different prices:

  • 15% of the Price = $15.00 (basic). Here, $15.00 is 15% of the original price.
  • Discounted Price = $100.00 – $15.00 = $85.00 (price decrease). Here, the final price is $85.00 after a 15% discount.
  • Increased Price = $100.00 + $15.00 = $115.00 (price increase). Here, the final price is $115.00 after a 15% hike.

If you have any of these prices — $15.00, $85.00, or $115.00 — you can use a suitable reverse percentage in Google Sheets formula to find the original price.

Here’s a real-life example.

Formulas to Calculate Reverse Percentage in Google Sheets

1. Basic Formula — Inputs are Final Number and Percentage That Made It

Imagine you remember receiving a $195.00 discount when you bought a sofa set for your living room last year, but you forgot the original purchase price.

Since you know the discounted amount (final number) and the percentage it represented of the original price, you can use the following reverse percentage formula in Google Sheets:

Generic Formula:

Final_Number ÷ Percentage = Original Number

In a cell, enter:

=195/15%

You’ll get 1300.00, which is the original price of the sofa set.

Want to use cell references instead? Of course!

A1 = 195
B1 = 15%
C1 = =A1/B1

2. Reverse Percentage When You Have Final Number and Percentage Decrease

Sometimes, we apply a discount to a value and later want to find the original value. In that case, here’s the method you need.

Assume you bought a sofa for $1105.00 after a 15% discount. How do you find the original price?

Generic Formula:

Final_Number ÷ (1 – Percentage) = Original Number

In a cell, enter:

=1105/(1-15%)

The output will be 1300.00, the original price without the discount.

Prefer to use cell references? Here’s how:

=E2/(1-E3)
Example of calculating reverse percentage decrease in Google Sheets

This is a very handy reverse percentage in Google Sheets formula for discount scenarios!

3. Reverse Percentage When You Have Final Number and Percentage Increase

You’ve been dreaming about a car for a long time. Then you read about price hikes coming into effect from the new year — but you didn’t act fast enough!

Now the price has gone up by 3%, and the current price of the model you were eyeing is $29,315.00.

How do you find the car’s price before the hike?

Here’s the reverse percentage in Google Sheets formula you need:

Generic Formula:

Final_Number ÷ (1 + Percentage) = Original Number

In a cell, enter:

=29315/(1+3%)

Using cell references:

=E2/(1+E3)
Example of calculating reverse percentage increase in Google Sheets

This formula helps you quickly reverse a percentage increase and find the original price.

That’s all. Thanks for staying till the end. Enjoy calculating!

Resources

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Expert Prashanth KV is a Diamond Product Expert in Google Sheets, officially recognized by Google for his contributions to the Docs Editors Help Community and featured in the Google Product Experts Directory. With years of experience working with Google Sheets and Excel for multinational firms in Mumbai and Dubai, he has been blogging since 2012, offering practical, real-world spreadsheet solutions that professionals rely on. Explore his blog to learn advanced formulas, automation tips, and problem-solving techniques to elevate your spreadsheet skills.

How to Count Merged Cells in Google Sheets (and Get Their Size)

Sometimes, you may have blocks of merged cells in a column or row. But...

Count Consecutive Workday Absences in Google Sheets

This tutorial offers a powerful formula-based solution to count consecutive workday absences in Google...

Top N Products and Top N Sellers in Google Sheets (Top N of Top N)

If you’ve ever wanted to compare which sellers contribute the most to your top-selling...

Use XLOOKUP in a Structured Table in Google Sheets (Single and Multiple Conditions)

This tutorial is for users who want to apply XLOOKUP inside a structured table...

More like this

How to Count Merged Cells in Google Sheets (and Get Their Size)

Sometimes, you may have blocks of merged cells in a column or row. But...

Count Consecutive Workday Absences in Google Sheets

This tutorial offers a powerful formula-based solution to count consecutive workday absences in Google...

Top N Products and Top N Sellers in Google Sheets (Top N of Top N)

If you’ve ever wanted to compare which sellers contribute the most to your top-selling...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.