Im not great at maths anyways and I'm just looking to do a quick calculation on an ASP page.
I'm guessing its producing an error because im not using a whole number as when I test with one it works fine.
Error: Invalid procedure call or argument
Any help would be appreciated.
Here is what I have:
numResults = 100*(((9.00/10.00)^(1/5))-1)
So in order of process it should be:
Result1 = 9.00/10.00
Result2 = 1/5
Result3 = Result1^Result2
Result4 = Result3-1
Result5 = 100*Result4
- FateFirst
I'm guessing its producing an error because im not using a whole number as when I test with one it works fine.
Error: Invalid procedure call or argument
Any help would be appreciated.
Here is what I have:
numResults = 100*(((9.00/10.00)^(1/5))-1)
So in order of process it should be:
Result1 = 9.00/10.00
Result2 = 1/5
Result3 = Result1^Result2
Result4 = Result3-1
Result5 = 100*Result4
- FateFirst