How to average random cells with out counting zero?

A

Alex

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
 
L

Luke M

Note that by concatenating something onto end, your cell contents are treated
as text, so to use them in further calculations will reuire you to strip off
the end, and then reconvert to number (VALUE function). But, to do what you
ask:

=TEXT(ROUND(D31/E31,2),"#.00")&" : 1"

The use of text forces the formatting of calculated value (similar to using
a custom format). The #.00 format forces a display of 2 digits past the
decimal, and then concatentating it to something else creates a text value
(which you can't use in math operations)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top