Averaging formula error

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

Guest

Please tell me what's wrong with my formula.

=AVERAGE(IF(((ByDay!B1:B65000="LAZ")*(ByDay!HI1:HI65000>0%)),ByDay!HI1:HI65000))

then I'm doing CSE
 
There's nothing wrong with your formula. You have an extra set of unneeded
( ) but that won't have a negative impact:

=AVERAGE(IF((ByDay!B1:B65000="LAZ")*(ByDay!HI1:HI65000>0%),ByDay!HI1:HI65000))

Biff
 
Hi,

Nothing wrong with the formula but I'm guessing you have some cells that are
reporting a #N/A error in HI1:HI65000. Fix that and you should be ok.

=IF(ISERROR(your_formula),"",your_formula)

HTH
Jean-Guy
 
Hi - I don't have any #N/A in HI

=AVERAGE(IF(((ByDay!B1:B65000="LAZ")*(ByDay!AI1:AI65000>0%)),ByDay!AI1:AI65000))

changed the column to AI anyway - I'm getting a #NAME? error
 
THANKS. If I don't type CSE - then I get 0 (zero), If I type CSE using
Valko's I get #Name?

any ideas on what I"m going wrong?
 
The only thing that will cause the #NAME? error is if your sheet name is
misspelled or does not even exsist.

Biff
 
....or you have #NAME? errors somewhere within your data....

...or you misspell one of the function names.....

But I was basing my determination on this:
Hi - I don't have any #N/A in HI

I think if they had #NAME? errors in the range they would've told us when
questioned about #N/A. But, ya never know!

Biff
 

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

AVg question 6
why would this happen? 3
formula, code or macro? 5
ics attachment 1
Multiple charts per slide? 10
Average 1
Average 10
Average Formula 1

Back
Top