Standard Deviation Formula that will ignore 0 ,,,,, help...

stephen.smith

Board Regular
Joined
Jul 7, 2010
Messages
119
Hi guys I am having serious problems with a very large database I need to use. I am trying to calculate standard deviation but my results are being thrown by 0s in the data, is there a formula that ignores the 0 and still calculates the standard deviation, I also need to do this for mean formula aswell, any help would be greatly appreciated.
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
welcome to the board

please post your existing formulas, it will be easier to update them once we can see what is happening exactly
 
Upvote 0
=STDEV(G41,G40,G39,G38,G37,G36,G35,G34,G33,G32,G30,G31,G29,G28,G27,G26,G25,G24,G23,G22,G21,G20,G19,G18,G17,G16,G15,G14,G13,G12,G11,G10,G9,G8,G7,G6,G5,G4,G3,G2,G2)
This is the formula I am using. All of the info that comes into these cells is coming from a 40 questionnaires that are filled out on a weekly basis by different employees in different areas so if a question is not relevant it is not answered and then a value of 0 is left in the corresponding cell and thus this is messing up our results.
Thanks again for the help
 
Upvote 0
You have G2 in there twice is that deliberate? for a range, i.e. G2:G41 you can use this array formula

=STDEV(IF(G2:G41<>0,G2:G41))

confirmed with CTRL+SHIFT+ENTER

You can do the same with AVERAGE or if you have Excel 2007 you can use AVERAGEIF function
 
Upvote 0
try
Code:
=STDEV(IF(G1:G41<>0,G1:G41))
using shift + ctrl + enter to confirm, as this is an array formula

note, I assume that the duplication of G2 is an error, and I have extended your range to G1 instead
 
Upvote 0
Hmm, both this: =STDEV.P($B11:$NC11)
and this: =STDEV.P(IF($B11:$NC11<>0,$B11:$NC11,0)) (ctrl+shift+enter)
give me the same result, namely 0.052199 (of the 366 entries, 365 are 0 and one is 1, which should give me a standard deviation of 0). It doesn't appear that this solution is ignoring the zero entries.

I am using Excel 2010.
 
Upvote 0
Hmm, both this: =STDEV.P($B11:$NC11)
and this: =STDEV.P(IF($B11:$NC11<>0,$B11:$NC11,0)) (ctrl+shift+enter)
give me the same result, namely 0.052199 (of the 366 entries, 365 are 0 and one is 1, which should give me a standard deviation of 0). It doesn't appear that this solution is ignoring the zero entries.

I am using Excel 2010.

Control+shift+enter, not just enter:

=STDEV.P(IF(1-($B11:$NA11=""),$B11:$NA11))

If real zero's and empty cells must be ignored...

=STDEV.P(IF(ISNUMBER(1/$B11:$NA11),IF($B11:$NA11>0,$B11:$NA11)))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,527
Messages
6,120,057
Members
448,940
Latest member
mdusw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top