Using a formula result in another formula

kph

New Member
Joined
Jul 12, 2008
Messages
7
In cell K3 I have a formula,=SUM(0.04*C3)-C3, which produces a numeric result. I am out what 4% of 9.04 is and then subtracting that amount.

I want to take the result of the formula in K3 and use it in another formula ,=SUM(K3-C3)*100, which is in the adjacent cell M3. Here I am subtracting the net amount (8.68), which is formual result found in K3.


My problem is that the result is not the correct answer. The answer should be 36.00 whereas it turns out to be 1,771.84

Got any ideas as to what I am doing wrong or how I can fix it. Thanks in advance.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Your first formula, in K3, should be:

=C3*0.04-C3
Your formula in M3 should probably be this if you expect 36.16:

=(C3+K3)*100
Subtracting the original number from 4% of the original number will always result in a negative number. Combine that with the original to get the difference.

Of course, you don't need K3 to get the result in M3. Just use

=C3*4

Although, not sure why 36 would be the difference of 9.04 and 8.6784. It would be .3616. (C3*0.04)
 
Upvote 0
Thank you very much - it worked and I appreciate your help. I had worked on it for a long time and learned what didn't work - so thanks for the help.:) kph
 
Upvote 0

Forum statistics

Threads
1,215,340
Messages
6,124,382
Members
449,155
Latest member
ravioli44

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