If the Speed exceeds or falls below 1.25% of the speed entered -The answer
will be "Busted"
Example- entered 105.25 mph must be between 103.93 and 106.57 to be
"Good" If the calculation is out side of those parimeters = Busted
--
Tuna Pete
A2 = 105.25
=IF(AND(A2>=ROUND(A2*0.9875,2),A2<=ROUND(A2*1.0125,2)),"Good","Busted")
--
Biff
Microsoft Excel MVP
"Pete" <pe...@discussions.microsoft.com> wrote in message
news:ADBE97A0-D63A-41E5...@microsoft.com...
C1 = Result formula:
=IF(AND(B1>=ROUND(A1-A1*1.25%,2), B1<=ROUND(A1+A1*1.25%,2)), "Good", "Busted")
Does that do it for you?
--
"Actually, I *am* a rocket scientist." -- JB
(www.MadRocketScientist.com)
Your feedback is appreciated, click YES if this post helped you.
=IF(ROUND(MAX(A1:B1)-MIN(A1:B1),2) <= ROUND(A1*1.25%,2), "Good", "Busted")
--
"Actually, I *am* a rocket scientist." -- JB
(www.MadRocketScientist.com)
Your feedback is appreciated, click YES if this post helped you.
--
Tuna Pete
I left out a comparison cell....
A2 = racer speed = 105.25
B2 = target speed
=IF(AND(A2>=ROUND(B2*0.9875,2),A2<=ROUND(B2*1.0125,2)),"Good","Busted")
--
Biff
Microsoft Excel MVP
"T. Valko" <biffi...@comcast.net> wrote in message
news:%23y4CbK0...@TK2MSFTNGP02.phx.gbl...
Just for the heck of it...
A2 = racer speed
B2 = target speed
=IF(A2=MEDIAN(A2,ROUND(B2*1.0125,2),ROUND(B2*0.9875,2)),"Good","Busted")
--
Biff
Microsoft Excel MVP
"JBeaucaire" <jb...@madrocketscientist.com.NOSPAM> wrote in message
news:0C30C2A5-B728-48BD...@microsoft.com...
and for a real topper, "could A5 tell us by how much"
That will put a fork in my needs tonight
--
Thank You! Tuna Pete
"T. Valko" wrote:
> .
>
=IF(A1<B1,"Over","Under")
DIFFERENCE:
=B1-A1