+ Reply to Thread
Results 1 to 8 of 8

Can I add another variable to my nested if/and formula?

  1. #1
    Registered User
    Join Date
    12-05-2016
    Location
    Virginia, USA
    MS-Off Ver
    2016 Professional
    Posts
    19

    Can I add another variable to my nested if/and formula?

    Ok, so here goes. There are 4 cells to this. B,H,I,M

    B has two variables. Buy or Sell
    H will be a number
    I will be a number
    M will say yes or no

    Here are the stipulations:

    If B="BUY", and I>=H, then "YES" should display in M.
    If B="SELL", and I<=H, then "YES" should display in M.
    If neither statement results in a yes, "NO" should be displayed.

    I have been racking my brain, and have already had help with one column. I finished 90% of the sheet, just having a hard time with the last few pieces.
    Last edited by bromanbdc; 12-05-2016 at 11:29 PM. Reason: Update Title

  2. #2
    Valued Forum Contributor kasan's Avatar
    Join Date
    07-22-2009
    Location
    Riga, Latvia
    MS-Off Ver
    Excel 2010
    Posts
    680

    Re: I am trying to put together an excel sheet, but having trouble with a few things.

    Hi,
    Try this formula in cell M1
    Formula: copy to clipboard
    Please Login or Register  to view this content.

  3. #3
    Registered User
    Join Date
    12-01-2016
    Location
    London, England
    MS-Off Ver
    2016
    Posts
    14

    Re: I am trying to put together an excel sheet, but having trouble with a few things.

    Assuming the cell references are B, H, I and M and B can only hold the 2 specified values the formula in M could be:

    If "BUY" then if H2>= I2 then YES, otherwise NO, otherwise (must be "SELL") so if I<= H then Yes otherwise NO

    =IF(B2="BUY",IF(H2>=I2,"YES","NO"),IF(H2<-I2,"YES","NO"))

    If you need to handle that B may be blank i.e neither BUY or SELL

    =IF(B2="BUY",IF(H2>=I2,"YES","NO"),IF(B2="SELL",IF(H2<=I2,"YES","NO"),""))

  4. #4
    Registered User
    Join Date
    12-05-2016
    Location
    Virginia, USA
    MS-Off Ver
    2016 Professional
    Posts
    19

    Re: I am trying to put together an excel sheet, but having trouble with a few things.

    Thank You so very much!! I think that is the last piece of the puzzle. I really appreciate it!!

  5. #5
    Registered User
    Join Date
    12-05-2016
    Location
    Virginia, USA
    MS-Off Ver
    2016 Professional
    Posts
    19

    Re: I am trying to put together an excel sheet, but having trouble with a few things.

    Thompson, that is the same formula that I was trying. It would only work one way. Kasan's suggestion worked as needed. Thank you for your suggestion as well.

  6. #6
    Registered User
    Join Date
    12-05-2016
    Location
    Virginia, USA
    MS-Off Ver
    2016 Professional
    Posts
    19

    Re: I am trying to put together an excel sheet, but having trouble with a few things.

    ok, I thought the formula from Kasan was good, but I overlooked something. Another condition that needs to be added:

    It needs to have data in order to calculate. As it is now, it is calculating with no numbers input into the I cell since
    technically, no number is less than 0. Is there a way to update the formula to operate as it does, with the only added
    action that if there are no numbers in the I field, M says "NO" as well? Kasan, this is the formula that I am referring to:

    =IF(AND(B1="BUY",I1>=H1),"Yes",IF(AND(B1="SELL",I1<=H1),"Yes","No"))

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Can I add another variable to my nested if/and formula?

    I would adjust this...
    =IF(AND(B1="BUY",I1>=H1),"Yes",IF(AND(B1="SELL",I1<=H1),"Yes","No"))
    to this...
    =IF(OR(AND(B1="BUY",I1>=H1),AND(B1="SELL",I1<=H1)),"Yes","No")

    Now, not sure which cell you want to test for, but I will use B1 - adjust as needed...
    =if(B1="","No",IF(OR(AND(B1="BUY",I1>=H1),AND(B1="SELL",I1<=H1)),"Yes","No"))

    Or, swapped around...
    =if(or(B1="",AND(B1<>"BUY",I1<H1),AND(B1<>"SELL",I1>H1)),"No","Yes")
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  8. #8
    Registered User
    Join Date
    12-05-2016
    Location
    Virginia, USA
    MS-Off Ver
    2016 Professional
    Posts
    19

    Re: Can I add another variable to my nested if/and formula?

    Ford, Thank you very much. Your suggestion worked flawlessly with one minor change:

    =if(I1="","No",IF(OR(AND(B1="BUY",I1>=H1),AND(B1="SELL",I1<=H1)),"Yes","No"))

    So the only change to yours was changing the first if function B1 to I1. I am sure that is what you meant though. I have now tested it for all conditions and it works flawlessly. Thanks again. Don't know what I would do without you all. Very helpful.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 4
    Last Post: 06-09-2016, 01:30 PM
  2. [SOLVED] Having Trouble Modifying Excel Sheet With Outlook
    By bullo1854 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-26-2014, 10:31 AM
  3. Help with pieces of a code that copy things into a new sheet
    By ammartino44 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-18-2014, 03:45 PM
  4. [SOLVED] Creating a search method in an excel sheet to identify things according to a specific id.
    By Moh13 in forum Excel Programming / VBA / Macros
    Replies: 28
    Last Post: 10-02-2013, 11:40 PM
  5. Replies: 6
    Last Post: 08-16-2011, 10:47 PM
  6. Excel time sheet trouble after midnight
    By ChadE76 in forum Excel General
    Replies: 3
    Last Post: 03-23-2008, 08:41 AM
  7. trouble auto sending excel sheet via outlook
    By Picto in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-12-2007, 08:04 AM

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