View Single Post
  #3   Report Post  
Ron Rosenfeld
 
Posts: n/a
Default

On Sun, 18 Sep 2005 17:08:02 -0700, "hongkonglt"
wrote:

I perform a lookup where the results could populate one cell or as many as 15
cells with number results. The cells that do not result in numbers have
#N/A. I want to average the fifteen cells but only the cells with numbers.
How do I get it to ignore the #N/A when performing the average?


Use this **array** formula:

=AVERAGE(IF(NOT(ISNA(rng)),rng))

To enter an **array** formula, hold down <ctrl<shift while hitting <enter.
Excel will place braces {...} around the formula.


--ron