#N/A

A

Arturo

Surprising Zeros in Charts

My model is built.
Using #N/A - my chart displays perfectly, zeros suppressed.
This formula is what feeds the values in my chart series.
=IF(ISERROR(((AVERAGE(SHEET1!BE2:BM2))*(100/5))),â€â€,((AVERAGE(SHEET1!BE2:BM2))*(100/5)))

If I alter that error handling
to:=IF(ISERROR(((AVERAGE(SHEET1!BE2:BM2))*(100/5))),"#N/A",((AVERAGE(SHEET1!BE2:BM2))*(100/5)))
Zero still displays…
If I may ask – how would I alter this formula to function they way I hope it
would?

Sincerely,
Arturo
 
D

Domenic

Try...

=IF(COUNT(Sheet1!BE2:BM2),AVERAGE(Sheet1!BE2:BM2)*100/5,#N/A)

Hope this helps!
 
M

Miguel Zapico

It may be treating #N/A as a string not the #N/A value. You may try this one:
=IF(ISERROR(((AVERAGE(SHEET1!BE2:BM2))*(100/5))),NA(),((AVERAGE(SHEET1!BE2:BM2))*(100/5)))

Hope this helps,
Miguel.
 

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

#N/A 1
#N/A 2
Vlookups to return a N/A value 3
Vlookup #n/a 6
Correct #N/A Value 6
Non-contiguous range and Sumproduct to average 5
SUM, AVERAGE and PRINT with #N/A cells 11
Sum or Average with #N/A cells 5

Top