Home > Mobile >  How to average with errors in spreadsheet
How to average with errors in spreadsheet

Time:01-19

i tried to average cells that include one or more errors in google spreadsheet, seems =average(D:D) is not working. how to avoid those errors? Thanks!

CodePudding user response:

You may try AVERAGEIF() function like-

=AVERAGEIF(D:D,">0")

Above formula will ignore error values.

CodePudding user response:

try this:

=AVERAGE(IFERROR(D:D))
  •  Tags:  
  • Related