Please any suggestions?
Elie
>.
>
ISERR catches error values excluding #N/A while ISERROR catches error values
including #N/A. I'd think the OP would prefer ISERROR (once translated to
German). To exclude error values and zeros, try the array formula
=AVERAGE(IF(ISNUMBER(1/A1:A29),A1:A29))
Also a Array formula
--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)
www.rondebruin.nl
"Elie Yehezkel" <yehezk...@hotmail.com> wrote in message news:00cf01c3515d$4acdb730$a601...@phx.gbl...
To just exclude error messages, array-enter:
=AVERAGE(IF(ISNUMBER(A1:A8),A1:A8,""))
Note that YOU do not enter the braces; XL does that when you do
<ctrl><shift><enter>.
To exclude both error messages and 0's, array-enter:
=AVERAGE(IF(ISNUMBER(A1:A8),(A1:A8<>0)*A1:A8,""))
--ron