Formula problem

C

Computer geek

I have a problem somewhere in this formula but I can't determine
where:

=IF(ISERROR(ROUNDUP(AVERAGE(J5:M5),0)),0, ROUNDUP(AVERAGE(I5:L5),0))

If there isn't an error it should return the average of J5:M5 but its
always returning the average of I5:L5 and I dont know why. Can someone
help?
 
G

Guest

you you told it to return that value

=IF(ISERROR(ROUNDUP(AVERAGE(J5:M5),0)),0, ROUNDUP(AVERAGE(J5:M5),0))
is probably what you want





or

=IF(ISERROR(ROUNDUP(AVERAGE(J5:M5),0)),0, ROUNDUP(AVERAGE(J5:M5),0))
 
G

Guest

=IF(ISERROR(ROUNDUP(AVERAGE(J5:M5),0)),ROUNDUP(AVERAGE(I5:L5),0),ROUNDUP(AVERAGE(J5:M5),0))
 

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


Top