Variables Referencing Cells Inside Formula

babeneker

New Member
Joined
Dec 13, 2024
Messages
9
Office Version
  1. 2019
Platform
  1. Windows
I am trying to create a calculator where the user just enters a variable percentage value into a cell (in this case, A1 in the example below) and I cannot seem to get variables that reference cells to work with the formulas. Here is an example of what I'm trying to do:

=B3/1.(A1)

Is this possible?
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Try:
Excel Formula:
=B3/(1+A1)
Nope, sorry. I don't want to add the numbers together. I just want the number from cell A1 to fill in as a variable in the formula.

Here's an example of the formula:

1,000,000/1.15 (15, or what is in A1, will fill in after the period)
 
Upvote 0
Divide by 100:
Excel Formula:
=B3/(1+A1/100)
 
Upvote 0
Solution
.. or if you did want it to look a bit more like that formula in post 1 with the decimal point written in there, you could do it like this
Excel Formula:
=B3/("1."&A1)
 
Upvote 0

Forum statistics

Threads
1,224,825
Messages
6,181,190
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

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