SOLVED

Assistance required with #DIV/0!

Copper Contributor

I'm using and formula =AVERAGE(E24:L24) which return error #DIV/0! if there is no value in the database.

How can I correct the error to show maybe 0 or no value until a value is provided.

2 Replies
best response confirmed by Grahmfs13 (Microsoft)
Solution

@Rudi3010 

Use

=IFERROR(AVERAGE(E24:L24),0)

or

=IFERROR(AVERAGE(E24:L24),"")

@Hans Vogelaar Thanks it worked.

1 best response

Accepted Solutions
best response confirmed by Grahmfs13 (Microsoft)
Solution

@Rudi3010 

Use

=IFERROR(AVERAGE(E24:L24),0)

or

=IFERROR(AVERAGE(E24:L24),"")

View solution in original post