Greater Than but Less than

G

Guest

I've been working on this formula for hours and I'm not coming up with
anything that works!

I need a formula that will calculate the following:

If x is less than .95 OR greater than 1.05, cell will read MISS
If x is greater than or equal to .95 but less than or equal to 1.05, cell
will read HIT

Someone please help! I get something that I think works and it doesn't!

Thanks!
 
S

Sandy Mann

With your *x* number in A1 try:

=IF(ABS(100-A1)>5,"Miss","Hit")

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
(e-mail address removed) with @tiscali.co.uk
 
K

Kevin James

Hi Kara,

Perhaps this helps, with x in cell A1

=IF((ABS(A1-1)>0.05),"MISS","HIT")

HTH,
--
Kevin James.
Tua'r Goleuni


| I've been working on this formula for hours and I'm not coming up with
| anything that works!
|
| I need a formula that will calculate the following:
|
| If x is less than .95 OR greater than 1.05, cell will read MISS
| If x is greater than or equal to .95 but less than or equal to 1.05, cell
| will read HIT
|
| Someone please help! I get something that I think works and it doesn't!
|
| Thanks!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top