D
D Kronk
Does anyone have any suggestions on how to actually make
Excel do what it's supposed to do concerning conditional
formula. Specifically, I have to perform some basic
statistical analysis on a list of numbers and I'm trying
to get totals of the values that fall within the 1st, 2nd,
and 3rd, standard deviations (without having to count them
by hand!). I calculated the mean and standard deviation
but couldn't find a quick way to output values that told
me how many of my values fell into each category (how many
in 1st, how many in 2nd, and how many in 3rd).
I attempted to write a formula that would provide me with
certain output that I had hoped to use in a second
conditional formula. It's probably easiest if I give an
example: Suppose my Mean is 10 and my Standard Deviation
is 7. I wrote this formula: =IF(10-7<=A4<=10+7, "1st")
My value in cell A4 was 12 so I should have gotten "1st"
since it is between 3 and 17. However, I got "FALSE" as
my output. That's wrong.
I'm trying to write a nested formula that will provide me
with values that I could summarize more quickly, like this:
=IF(10-7<= CELL REFERENCE <=10+7, "1st", IF(10-(2*7)<=
CELL REFERENCE <=10+(2*7), "2nd", IF(10-(3*7)<= CELL
REFERENCE <=10+(3*7), "3rd", "OVER")))
That should look at the value in the cell I'm interested
in, compare it to the values within the ranges of 1st,
2nd, and 3rd standard deviations, and tell me which group
it's in by outputting "1st", "2nd", "3rd", or "OVER".
Am I completely wrong about this? I even tested this by
writing a simple IF statement and I still got FALSE as my
output. =IF(3<=12<=17, "1st") returned FALSE
Your help would be greatly appreciated since I'm trying to
get this done for fiscal year end. Thanks.
Doug Kronk
(e-mail address removed)
(e-mail address removed)
Excel do what it's supposed to do concerning conditional
formula. Specifically, I have to perform some basic
statistical analysis on a list of numbers and I'm trying
to get totals of the values that fall within the 1st, 2nd,
and 3rd, standard deviations (without having to count them
by hand!). I calculated the mean and standard deviation
but couldn't find a quick way to output values that told
me how many of my values fell into each category (how many
in 1st, how many in 2nd, and how many in 3rd).
I attempted to write a formula that would provide me with
certain output that I had hoped to use in a second
conditional formula. It's probably easiest if I give an
example: Suppose my Mean is 10 and my Standard Deviation
is 7. I wrote this formula: =IF(10-7<=A4<=10+7, "1st")
My value in cell A4 was 12 so I should have gotten "1st"
since it is between 3 and 17. However, I got "FALSE" as
my output. That's wrong.
I'm trying to write a nested formula that will provide me
with values that I could summarize more quickly, like this:
=IF(10-7<= CELL REFERENCE <=10+7, "1st", IF(10-(2*7)<=
CELL REFERENCE <=10+(2*7), "2nd", IF(10-(3*7)<= CELL
REFERENCE <=10+(3*7), "3rd", "OVER")))
That should look at the value in the cell I'm interested
in, compare it to the values within the ranges of 1st,
2nd, and 3rd standard deviations, and tell me which group
it's in by outputting "1st", "2nd", "3rd", or "OVER".
Am I completely wrong about this? I even tested this by
writing a simple IF statement and I still got FALSE as my
output. =IF(3<=12<=17, "1st") returned FALSE
Your help would be greatly appreciated since I'm trying to
get this done for fiscal year end. Thanks.
Doug Kronk
(e-mail address removed)
(e-mail address removed)