average on rows

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

can we use average in rows even two rows at the time when number are not in
consequent collums meaning there is some spaces between them without having
to add each number manually in the function window.
 
Have you tried? Your description is confusing to me, but AVERAGE()
ignores blank cells and text...
 
sorry, let me try to explain a little more . Well i have some number in two
subsequent rows in different collums and i want an average of all but the
problem is that they are not in subsequent collum. average does not seem to
work when the number have an empty collum between them

x | y | empty | z | empty | x | | | average
y | x | z | x | x | empty |
 
If you used something like =AVERAGE(A1:H2) you should get the correct value
even when these are blank cell in the range. If the rows are not consecutive
you could use =AVERAGE(A1:H1, A5:H5) for example

best wishes
 
Hold down Ctrl key and left-click on each of the cells you wish to
average.......then Insert > Name > Define and type a RangeName for your new
Non-contiguious range, say "AverageRange"

then use =AVERAGE(AverageRange)

This way, even if numbers get put in the empty cells later, it will not
affect your calculation.

Vaya con Dios,
Chuck, CABGx3
 
true it does work, thanks


Bernard Liengme said:
If you used something like =AVERAGE(A1:H2) you should get the correct value
even when these are blank cell in the range. If the rows are not consecutive
you could use =AVERAGE(A1:H1, A5:H5) for example

best wishes
 

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

Similar Threads


Back
Top