+ Reply to Thread
Results 1 to 6 of 6

Using IFs

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-23-2010
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    346

    Using IFs

    Afternoon,

    I am trying to turn a numerical score into a Y, but with two criterias.

    I would like it to check cell AY, and give a Y if

    If there is a value in there (not including a formula which gives a blank)
    If the value is above 172

    If not it needs to give a no.

    Thanks

  2. #2
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Using IFs

    =IF(AY1>172,"Y","N")

    Change the red 1 to represent the appropriate row number.

  3. #3
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Re: Using IFs

    Try this..
    Formula: copy to clipboard
    =if(AY1>172,"Your_Value","")

    OR
    Formula: copy to clipboard
    =if(AND(AY1>172,AY1<>""),"Your_Value","")
    Regards,
    Vikas Gautam
    Excel-buzz.blogspot.com

    Excel is not a matter of Experience, its a matter of Application.

    Say Thanks, Click * Add Reputation

  4. #4
    Forum Contributor
    Join Date
    09-23-2010
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    346

    Re: Using IFs

    Sorry this still isn't working, probably because of my poor explanation. In the cell AY2 there are two possible things:
    1. A numerical score (created via a formula)
    2. A "blank/empty" cell (created via formula)

    I would like the formula to:
    - return a Y if AY2 is higher than 172
    - return a N if AY2 is lower than 172
    - return a blank/empty cell if AY2 is blank

    Thanks

  5. #5
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Using IFs

    =if(ay2="","",if(ay2>172,"Y","N"))

  6. #6
    Forum Contributor
    Join Date
    09-23-2010
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    346

    Re: Using IFs

    Sorted, thanks.

+ 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