I have a macro I am trying to develop, but at the moment, it simply sits there still as a macro
What I am after in English is the following:-
Number of Runners = F2
Expected Winners = F3
Winners = F4
So the formula in English is runners x (winners – expectedwinners)² / expectedwinners x (runners – expectedwinners)
I tried the following to achieve this, but nothing happens at all
I even tried it not using the squared symbol, but instead tried using power =
Any thoughts on the best way to write this to have it function correctly?
cheers
What I am after in English is the following:-
Number of Runners = F2
Expected Winners = F3
Winners = F4
So the formula in English is runners x (winners – expectedwinners)² / expectedwinners x (runners – expectedwinners)
I tried the following to achieve this, but nothing happens at all
VBA Code:
=F2*(F4-F3)^2/F3*(F2-F3)
I even tried it not using the squared symbol, but instead tried using power =
Code:
=POWER(F4-F3,2)*F2/F3*(F2-F3)
Any thoughts on the best way to write this to have it function correctly?
cheers