• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Finding a total based on multiple percentages

Trying to find the numbers for total and current when all I have is percentages.


example:


20% of X is..

14% of A

39% of B

245% of C


where X, A, B, and C are all positive whole numbers.


I can plug in different values for the starting percentage (instead of 20% make it 80%, for example) and the others update, but I want to try and figure out how to do the math to find what the actual values are for X, A, B, and C.


It feels like I'm forgetting some basic math that would solve this, and that excel could probably handle it easily, but I'm stumped.


Any ideas?
 
Indesignkat


you are missing something here


If 20% of X = Some Value

that can be written as


Code:
0.2 x X = Y


solving for X 


[code]X = Y/0.2


So you can only solve X if you know what Y is


If your problem is:


0.2 x X = 0.14 x A = 0.39 x B = 2.45 x C


It is the same problem

You need to know something else about the values


If the problem is


Total = 0.2 x X + 0.14 x A + 0.39 x B + 2.45 x C[/code]


It is still the same problem except that you now have 4 variables and will need some other data or limits to solve it

Without other data/limits there is an infinite number of solutions


What else do you know about the variables?

Max, Min, When they equal 0 intermediate steps, like A = 2 x B

etc


Please help us top help you
 
Back
Top