Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
I would like to ignore cells which reflect #n/a and consider cells with a value from 0 .... , here is my current formula "=SUM(I32:I53)/(COUNT(I32:I53)-COUNTIF(I32:I53,0)) " i currently have a formula in cells i32:i53. thanx |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUM(IF(ISNA(I32:I53),"",I32:I53))/(COUNT(I32:I53)-COUNTIF(I32:I53,0))
as an array formula (Control Shift Enter) -- David Biddulph "GENO" wrote in message ... Hi I would like to ignore cells which reflect #n/a and consider cells with a value from 0 .... , here is my current formula "=SUM(I32:I53)/(COUNT(I32:I53)-COUNTIF(I32:I53,0)) " i currently have a formula in cells i32:i53. thanx |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
=SUMIF(I32:I53,"<#N/A")/(COUNT(I32:I53)-COUNTIF(I32:I53,0)) If this post helps click Yes --------------- Jacob Skaria "GENO" wrote: Hi I would like to ignore cells which reflect #n/a and consider cells with a value from 0 .... , here is my current formula "=SUM(I32:I53)/(COUNT(I32:I53)-COUNTIF(I32:I53,0)) " i currently have a formula in cells i32:i53. thanx |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Ignore Errors | Excel Discussion (Misc queries) | |||
ignore #N/A in a sum? | Excel Worksheet Functions | |||
IF to ignore #N/A | Excel Discussion (Misc queries) | |||
please ignore | Excel Worksheet Functions | |||
Ignore #DIV/0! | Excel Worksheet Functions |