ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   average if (different cells) with formulas (https://www.excelbanter.com/excel-discussion-misc-queries/218552-average-if-different-cells-formulas.html)

[email protected]

average if (different cells) with formulas
 
Hi there,

I was wondering if there a simple way to average approx. 5 different
cells (not a range) in these different cells there are formulas I
don't want to average them if they are "" or 0.

ex. A1 = 1 B3 = "" C5=4 D9=4 AVERAGE SHOULD BE 3
AVERAGE(A1,B3,C5,D9;<"") something like this.

IS this possible.

Thanks.
CD

Murray

average if (different cells) with formulas
 
On Jan 31, 10:08*am, wrote:
Hi there,

I was wondering if there a simple way to average approx. 5 different
cells (not a range) in these different cells there are formulas I
don't want to average them if they are "" or 0.

ex. *A1 *= 1 * * B3 = "" * C5=4 * * * D9=4 * * *AVERAGE SHOULD BE *3
AVERAGE(A1,B3,C5,D9;<"") something like this.

IS this possible.

Thanks.
CD


Try it using just the average of the 4 cells (ie =average(A1, B3, C5,
D9). I think you will find it gives you the answer 3 anyway. If the
cell is genuinely blank (blank or formula evalutes to "") it will
ignore it. Worked for me when I tested it.

Regards

Murray

FSt1

average if (different cells) with formulas
 
hi
=sum(A1+B3+C5+D9)/Count(A1,B3,C5.D9)

Regards
FSt1

" wrote:

Hi there,

I was wondering if there a simple way to average approx. 5 different
cells (not a range) in these different cells there are formulas I
don't want to average them if they are "" or 0.

ex. A1 = 1 B3 = "" C5=4 D9=4 AVERAGE SHOULD BE 3
AVERAGE(A1,B3,C5,D9;<"") something like this.

IS this possible.

Thanks.
CD


David Biddulph[_2_]

average if (different cells) with formulas
 
I think that instead of
=sum(A1+B3+C5+D9)/Count(A1,B3,C5.D9) you may have meant
=(A1+B3+C5+D9)/Count(A1,B3,C5,D9) or
=sum(A1,B3,C5,D9)/Count(A1,B3,C5,D9)
[you need a comma instead of a full stop between C5 and D9, and if there
isn't anything that you wish to add to A1+B3+C5+D9 you don't need the sum
function.]
but you could equally well have used =AVERAGE(A1,B3,C5,D9)

But note that any of those formulae will ignore the empty string "" or a
genuinely empty cell, but it won't ignore zero.
--
David Biddulph

"FSt1" wrote in message
...
hi
=sum(A1+B3+C5+D9)/Count(A1,B3,C5.D9)

Regards
FSt1

" wrote:

Hi there,

I was wondering if there a simple way to average approx. 5 different
cells (not a range) in these different cells there are formulas I
don't want to average them if they are "" or 0.

ex. A1 = 1 B3 = "" C5=4 D9=4 AVERAGE SHOULD BE 3
AVERAGE(A1,B3,C5,D9;<"") something like this.

IS this possible.

Thanks.
CD




FSt1

average if (different cells) with formulas
 
yes, i did mean exactily what you pointed out.
thanks for catching that.

Regards
FSt1

"David Biddulph" wrote:

I think that instead of
=sum(A1+B3+C5+D9)/Count(A1,B3,C5.D9) you may have meant
=(A1+B3+C5+D9)/Count(A1,B3,C5,D9) or
=sum(A1,B3,C5,D9)/Count(A1,B3,C5,D9)
[you need a comma instead of a full stop between C5 and D9, and if there
isn't anything that you wish to add to A1+B3+C5+D9 you don't need the sum
function.]
but you could equally well have used =AVERAGE(A1,B3,C5,D9)

But note that any of those formulae will ignore the empty string "" or a
genuinely empty cell, but it won't ignore zero.
--
David Biddulph

"FSt1" wrote in message
...
hi
=sum(A1+B3+C5+D9)/Count(A1,B3,C5.D9)

Regards
FSt1

" wrote:

Hi there,

I was wondering if there a simple way to average approx. 5 different
cells (not a range) in these different cells there are formulas I
don't want to average them if they are "" or 0.

ex. A1 = 1 B3 = "" C5=4 D9=4 AVERAGE SHOULD BE 3
AVERAGE(A1,B3,C5,D9;<"") something like this.

IS this possible.

Thanks.
CD





[email protected]

average if (different cells) with formulas
 
On Jan 31, 12:03*am, FSt1 wrote:
yes, i did mean exactily what you pointed out.
thanks for catching that.

Regards
FSt1



"David Biddulph" wrote:
I think that instead of
*=sum(A1+B3+C5+D9)/Count(A1,B3,C5.D9) you may have meant
*=(A1+B3+C5+D9)/Count(A1,B3,C5,D9) or
*=sum(A1,B3,C5,D9)/Count(A1,B3,C5,D9)
[you need a comma instead of a full stop between C5 and D9, and if there
isn't anything that you wish to add to A1+B3+C5+D9 you don't need the sum
function.]
but you could equally well have used =AVERAGE(A1,B3,C5,D9)


But note that any of those formulae will ignore the empty string "" or a
genuinely empty cell, but it won't ignore zero.
--
David Biddulph


"FSt1" wrote in message
...
hi
=sum(A1+B3+C5+D9)/Count(A1,B3,C5.D9)


Regards
FSt1


" wrote:


Hi there,


I was wondering if there a simple way to average approx. 5 different
cells (not a range) in these different cells there are formulas I
don't want to average them if they are "" or 0.


ex. *A1 *= 1 * * B3 = "" * C5=4 * * * D9=4 * * *AVERAGE SHOULD BE *3
AVERAGE(A1,B3,C5,D9;<"") something like this.


IS this possible.


Thanks.
CD- Hide quoted text -


- Show quoted text -


Thank you to all you are soo helpful - thanks a bunch.

CD

[email protected]

average if (different cells) with formulas
 
On Feb 1, 12:56*pm, wrote:
On Jan 31, 12:03*am, FSt1 wrote:





yes, i did mean exactily what you pointed out.
thanks for catching that.


Regards
FSt1


"David Biddulph" wrote:
I think that instead of
*=sum(A1+B3+C5+D9)/Count(A1,B3,C5.D9) you may have meant
*=(A1+B3+C5+D9)/Count(A1,B3,C5,D9) or
*=sum(A1,B3,C5,D9)/Count(A1,B3,C5,D9)
[you need a comma instead of a full stop between C5 and D9, and if there
isn't anything that you wish to add to A1+B3+C5+D9 you don't need the sum
function.]
but you could equally well have used =AVERAGE(A1,B3,C5,D9)


But note that any of those formulae will ignore the empty string "" or a
genuinely empty cell, but it won't ignore zero.
--
David Biddulph


"FSt1" wrote in message
...
hi
=sum(A1+B3+C5+D9)/Count(A1,B3,C5.D9)


Regards
FSt1


" wrote:


Hi there,


I was wondering if there a simple way to average approx. 5 different
cells (not a range) in these different cells there are formulas I
don't want to average them if they are "" or 0.


ex. *A1 *= 1 * * B3 = "" * C5=4 * * * D9=4 * * *AVERAGE SHOULD BE *3
AVERAGE(A1,B3,C5,D9;<"") something like this.


IS this possible.


Thanks.
CD- Hide quoted text -


- Show quoted text -


Thank you to all you are soo helpful - thanks a bunch.

CD- Hide quoted text -

- Show quoted text -


Hi there me again. I tried it but the problem is I can just average
the 4 cells I need to include the 5th one also because I will be
copying formula down and I don't know which cell will be empty .

thanks


All times are GMT +1. The time now is 01:43 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com