Combined Formula - Pass result from 1st formula to 2nd which after calculating then displays the result

Event2020

Board Regular
Joined
Jan 6, 2011
Messages
118
Office Version
  1. 2019
Platform
  1. Windows
Windows 10
Microsoft Office Pro 2019

Senario
A number is entered in cell A1 (for this example the number 151 but when in use could be any number)

In Cell B1 the formula is =A1/454 which returns 0.33
In the above formula, the number 454 is a constant in that it will always be 454 and it must be Cell A1 devided by 454

Using the return result of the formula in B1
In Cell C1 the formula is 15*0.33 which returns 4.95
In the above formula, the number 15 is a constant in that it will always be 15

Can the two formulas be combined in one cell so that the result from the first formula (in this example 0.33) is passed to the second formula which then displays the result in Cell B1 which (in this example would be 4.95)?

I know how to combine IF formulas but I do not know how to do it with these kinds of formulas.
 

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,)
How about
Excel Formula:
=ROUND(A1/454,2)*15
 
Upvote 0
Solution
something like this:
Book1
ABC
11510.3325991194.988986784
2^^VariableDivide by ConstantMultiply by Constant
3
4Variable 1151
5Constant 1454
6Contant 215
7All in One:4.988986784
8
9W Roundng to match you:4.95
10Inserting constants:4.95
Sheet1
Cell Formulas
RangeFormula
B1B1=A1/454
C1C1=15*B1
B7B7=(B4/B5)*B6
B9B9=ROUND(B4/B5,2)*B6
B10B10=ROUND(B4/454,2)*15
 
Upvote 0
I have had a chance to try both suggestions and they both work as long as the Number in Cell A1 is 151
but if you double it to 302 so that it becomes 302/454 (on my calculator the answer is 9.9) the formulas
both return 10.05?
 
Upvote 0
You can remove the rounding, but that will then give a result of 4.99 for 151 rather than 4.95
Excel Formula:
=A1/454*15
 
Upvote 0
Ok Thanks - I will keep the rounding.

Thank you again to you both for your kind suggestions and
I am going with Fluffs solution.
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0
Fluff thank you to you and awoohaw.

I try not to ask too many questions and I only tend to do so
when I am unable to work something out by myself.

This forum never disapoints.
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,678
Members
449,116
Latest member
HypnoFant

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