+ Reply to Thread
Results 1 to 3 of 3

Multiple IF statements plus ignoring blanks

  1. #1
    Registered User
    Join Date
    10-31-2011
    Location
    London
    MS-Off Ver
    Excel 2007
    Posts
    2

    Question Multiple IF statements plus ignoring blanks

    Hi Guys,

    I was wondering if someone could help me with the following problem as i have tried multiple things and i still can get it to work!

    Ok i have two columns one which contains predicted values (Column C) and one with observed values (Column B). The values will either be 1 or 0.

    so here is my criteria (i have used row 2 as an example):
    if B2=C2, "correct"
    if B2>C2, "High Predicted as low"
    if B2<C2, "Low predicted as high"
    IF(OR(B2,C2=" "," "))

    The problem i have is that on some occasions the values in B OR C could be blank so this means my IF statement does not work as if for example B2=1 and C was blank then it would give me "high predicted as low" when in fact it should be blank as C2 is blank. This is visa vera if C2 was 1 and B2 was blank as it would give me low predicted as high when infact it should be blank! I have tried multiple if statements and have tried to include AND/OR statements too but i cant seem to get it right!

    If anyone could make any suggestions it would be much appreciated

    Thank you for your time





    [CODE]=IF(B30>C30,"High predicted as low",(IF(B30<C30, "Low predicted as high","Correct"))) /code

  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: Multiple IF statements plus ignoring blanks

    dnewby,

    Give this a try:
    =IF(OR(TRIM(B2)="",TRIM(C2)=""),"",IF(B2>C2,"High predicted as low",IF(B2<C2,"Low predicted as high","Correct")))
    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
    10-31-2011
    Location
    London
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Multiple IF statements plus ignoring blanks

    Hey Tigeravatar,

    Thats works! Thank you so much

    dnewby

+ 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