View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Alex Alex is offline
external usenet poster
 
Posts: 12
Default How to average random cells with out counting zero?

I am trying to average every 8th cell in a column, however I do not want to
average zeros,
=AVERAGE((IF(A1=0,"",A1)),(IF(A8=0,"",A8)),(IF(A16 =0,"",A16)),(IF(A24=0,"",A24)))

is what I came up with but it gives the "#value" error! Please help