Anyone here really good at maths?

X

Xeanor

Guest
I'm making a cast speed calc, but I need to be able to sort on RA points cost :eek:

So how do I make a formula that will say:

When i enter: Aug Dex 1, it wil say: that costs 1 point total
When i enter: Aug Dex 2, it wil say: that costs 4 points total
When i enter: Aug Dex 3, it wil say: that costs 10 points total
When i enter: Aug Dex 4, it wil say: that costs 20 points total
When i enter: Aug Dex 5, it wil say: that costs 34 points total

Well it's about the 1st and the 2nd number, you need to multiply the 1st one with something else to get the 2nd number, but what? :eek: I can't work it out at least.
 
X

Xeanor

Guest
How do I do that in Excel and specify it to 1 column? :p
 
B

Breni

Guest
You could try this:

=IF(A1=5,A1*6.8,(IF(A1=4,A1*5,(IF(A1=3,(SUM(4*2.5)),(IF(A1=2,A1*2,(IF(A1=1,1)))))))))

Assuming A1 is the cell in which you place the value of Aug Dex, the formula will calculate the result in whichever cell you place it.

The last text entry in the formula checks for values outside the range and returns the "error" therein.

Hope it helps :)
 
S

Stina Handfast

Guest
Or simply without the multiplicators:

=IF(A1=1;1;
IF(A1=2;4;
IF(A1=3;10;
IF(A1=4;20;
IF(A1=5;34;0)))))


edit: will display 0 if value of A1 (i.e. level of aug dex) is 0
 

Users who are viewing this thread

Top Bottom