Reputation: 3
I am trying to figure out how to make a table that processes a formula I've created
The formula is (Game Winning Percentage + 40) divided by 20 = players skill level
I'm trying to create a billiards league spread sheet where i can input the game winning percentages so that the computer will do the math quickly for me.
(p) Percentage, (s) Skill level
(p + 40) divided by 20 = s
If it is possible to do so I need help.
Upvotes: 0
Views: 29
Reputation: 2477
Since there is no layout with your question, I'm going to provide one.
FORMULAS:
D2=IF((B2+C2)>0,B2/(B2+C2),"")
E2=((D2*100)+40)/20
Keep in mind that the percentage is smaller than a 1. It's a fraction, so I am multiplying it by 100 before performing any other math on it. By failing to do so, all the results are very much the same.
Upvotes: 0