+ Reply to Thread
Results 1 to 3 of 3

Formula find percentage greater than 3

Hybrid View

  1. #1
    Registered User
    Join Date
    05-29-2008
    Posts
    2

    Formula find percentage greater than 3

    I have to create an FCAT worksheet and would like to be able to average the total number of scores equal to or greater that 3. Numerical input is 1-5.
    Thanks

  2. #2
    Registered User
    Join Date
    04-18-2008
    Posts
    80
    There is probably a cleaner way to accomplish this, but here is an option.

    You could use a hidden helper column that contains this formula (if the values are in column A, this could be in column B)

    =IF(A1>=3,A1,"")
    then in column C you could use something like this:

    =AVERAGE(B:B)

  3. #3
    Forum Expert
    Join Date
    12-23-2006
    Location
    germany
    MS-Off Ver
    XL2003 / 2007 / 2010
    Posts
    6,326
    Quote Originally Posted by jkubec
    I have to create an FCAT worksheet and would like to be able to average the total number of scores equal to or greater that 3. Numerical input is 1-5.
    Thanks
    Following formula should to the trick
    =average(if(your_range>2,your_range,false))

    This formula should be eneterd as an array with Ctrl+Shift+Enter

    (I suppose you have no decimal numbers in your range

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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