Excel Formula

Odell1122

New Member
Joined
Aug 18, 2021
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hello - I'm having a hard time figuring out the Excel formula for the scenario below:

Known:
a = $140,000
b = 10%
c = $154,000

Formula: =a+(a*b) = c
$140,000+($140,000*10%) = $154,000

Scenario: I want to produce the same outcome ($154,000) with adjusted variables. If I drop the value of b to 5%, what is the formula to calculate the adjusted value of a?
a = unknown
b = 5%
c = $154,000

a+(a*5%) = $154,000 *Obviously this is not the formula, I'm just trying to illustrate what I need help figuring out - which is the value of "a"

Thanks in advance!
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Your formula could be changed to:
a*(1+percent)=c
$140,000*1.10=$154,000
so
a = unknown
b = 5%
c = $154,000

a= $154,000/1.05
Book1
ABC
1$ 140,000.001.1$ 154,000.00
2$ 146,666.671.05$ 154,000.00
Sheet1
Cell Formulas
RangeFormula
B1B1=1+0.1
C1C1=A1*B1
A2A2=C2/B2
 
Upvote 0
Your formula could be changed to:
a*(1+percent)=c
$140,000*1.10=$154,000
so
a = unknown
b = 5%
c = $154,000

a= $154,000/1.05
Book1
ABC
1$ 140,000.001.1$ 154,000.00
2$ 146,666.671.05$ 154,000.00
Sheet1
Cell Formulas
RangeFormula
B1B1=1+0.1
C1C1=A1*B1
A2A2=C2/B2
Thank you SO much! I really appreciate you helping me and also not making me feel embarrassed. I can't believe how simple that was!
 
Upvote 0

Forum statistics

Threads
1,215,055
Messages
6,122,902
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top