+ Reply to Thread
Results 1 to 3 of 3

If the value of a group of cells is over a specific amount

  1. #1
    Registered User
    Join Date
    02-11-2009
    Location
    Salt Lake City, Utah
    MS-Off Ver
    Excel 2010
    Posts
    98

    If the value of a group of cells is over a specific amount

    I just need a simple wording fix that I can't figure out. I have a group of cells, and none of them can be over 20% (.2). If one of these cells are, I need a different cell to recognize that one is bad. I can just do IF and OR statements in the cell I'm using to recognize the problem, but I don't want to have to type out each and every cell in the list.

    For example my current solution would have a cell that says: =IF(OR(F10>.2,F11>.2,F12>.2,...(etc)...,F35>.2),"Fail","Pass)

    Any suggestions? Thanks.
    Last edited by timmtamm; 05-08-2012 at 02:18 PM.
    Excel: Not my profession, but useful in it.

  2. #2
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: If the value of a group of cells is over a specific amount

    timmtamm,

    For something like this, I would use a CountIf() formula:

    =IF(COUNTIF(F10:F35,">0.2")>0,"Fail","Pass")
    Hope that helps,
    ~tigeravatar

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Registered User
    Join Date
    02-11-2009
    Location
    Salt Lake City, Utah
    MS-Off Ver
    Excel 2010
    Posts
    98

    Re: If the value of a group of cells is over a specific amount

    Perfect! Thanks a lot!

+ 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