+ Reply to Thread
Results 1 to 9 of 9

#NUM error when trying to average cells that also contain a formula

  1. #1
    Registered User
    Join Date
    11-02-2012
    Location
    Australia
    MS-Off Ver
    Excel 2007
    Posts
    15

    #NUM error when trying to average cells that also contain a formula

    Im trying to get the average of data from 5 other sheets with

    =AVERAGE('Period 1'!L4:L43,'Period 2'!L4:L43,'Period 3'!L4:L43,'Period 4'!L4:L43,'Period 5'!L4:L43)

    the cells I want to find the average of (L4:L43......etc.) contain the "LN" function referencing the cell to their left, eg. L4 = LN(K4)
    so i get a #NUM error in the cell containing

    =AVERAGE('Period 1'!L4:L43,'Period 2'!L4:L43,'Period 3'!L4:L43,'Period 4'!L4:L43,'Period 5'!L4:L43)

    Is there a way I can adjust this formula to work out the average rather than give #NUM error?

    Thanks

  2. #2
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,361

    Re: #NUM error when trying to average cells that also contain a formula

    you could issue something like this first in your LN functions

    Formula: copy to clipboard
    Please Login or Register  to view this content.

    or you could change the "" to 0 to receive zero when error is met.
    I think people forget the word "THANK YOU!!!!" Do you still know it???

    There is a little star ( ADD REPUTATION ) below those person who helped you. Click it to say your "PRIVATE APPRECIATION TO THEIR EFFORT ON THEIR CONTRIBUTIONS "

    Regards,
    Vladimir

  3. #3
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: #NUM error when trying to average cells that also contain a formula

    You should try to fix the errors as Vlady noted.

    However, just for the heck of it...

    You could try this:

    =SUMPRODUCT(SUMIF(INDIRECT("'Period "&{1,2,3,4,5}&"'!L4:L43"),"<1E100"))/COUNT('Period 1'!L4:L43,'Period 2'!L4:L43,'Period 3'!L4:L43,'Period 4'!L4:L43,'Period 5'!L4:L43)
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  4. #4
    Registered User
    Join Date
    11-02-2012
    Location
    Australia
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: #NUM error when trying to average cells that also contain a formula

    I put that in but it made no difference to the #NUM error in the cell with

    =AVERAGE('Period 1'!L4:L43,'Period 2'!L4:L43,'Period 3'!L4:L43,'Period 4'!L4:L43,'Period 5'!L4:L43)

    Im assuming the problem is because the above formula is recognising the LN function rather than the final value??

  5. #5
    Registered User
    Join Date
    11-02-2012
    Location
    Australia
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: #NUM error when trying to average cells that also contain a formula

    Just got your reply Tony and your formula gets rid of the error but I don't really have any idea what any of it means....
    Is it still finding the average?

    If so then its gret, Thanks!!

  6. #6
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: #NUM error when trying to average cells that also contain a formula

    Yes, it gets the average in a roundabout way that ignores the errors in any of the ranges.

    It gets the sum of all the ranges and then divides by the numeric count of all the ranges.

  7. #7
    Registered User
    Join Date
    11-02-2012
    Location
    Australia
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: #NUM error when trying to average cells that also contain a formula

    Great! Have been doing a bit of QA and it all works perfectly.
    Thanks for the help!!

  8. #8
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: #NUM error when trying to average cells that also contain a formula

    You're welcome. Thanks for the feedback!

  9. #9
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: #NUM error when trying to average cells that also contain a formula

    Quote Originally Posted by Tony Valko View Post
    You should try to fix the errors as Vlady noted.

    However, just for the heck of it...

    You could try this:

    =SUMPRODUCT(SUMIF(INDIRECT("'Period "&{1,2,3,4,5}&"'!L4:L43"),"<1E100"))/COUNT('Period 1'!L4:L43,'Period 2'!L4:L43,'Period 3'!L4:L43,'Period 4'!L4:L43,'Period 5'!L4:L43)
    Improvement.

    We can reduce that to:

    =SUMPRODUCT(SUMIF(INDIRECT("'Period "&{1,2,3,4,5}&"'!L4:L43"),"<1E100"))/COUNT('Period 1:Period 5'!L4:L43)

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1