I am trying to run a standard deviation formula on only a subset of a row. I have two conditions, the be below the top end of a range and above the bottom end of a range. Excel should the run STDEV formula on all numbers which meet this condition. I tried the following conditional array formula but consistently got the #Value error. Any suggestions?
The below formula was properly entered into excel as an array.
{=STDEV.P(IF(AND($V9:$V2000>($D$5*365-$D$7),$V9:$V2000<($D$5*365+$D$7)),$U$9:$U$2000,""))}
Any suggestions?
{}
around the formula. – Scott Craner.
in the middle of it before. – Matt CremeensAND
:=STDEV.P(IF(($V9:$V2000>($D$5*365-$D$7))*($V9:$V2000<($D$5*365+$D$7)),$U$9:$U$2000,""))
– Scott Craner