+ Reply to Thread
Results 1 to 4 of 4

Help with IF AND Statements

Hybrid View

jeff2012 Help with IF AND Statements 05-20-2012, 08:52 PM
FDibbins Re: Help with IF AND... 05-20-2012, 09:01 PM
vlady Re: Help with IF AND... 05-22-2012, 02:21 AM
Cutter Re: Help with IF AND... 05-22-2012, 09:06 AM
  1. #1
    Registered User
    Join Date
    05-20-2012
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    3

    Help with IF AND Statements

    Could someone please help me!
    I am trying to figure out what I'm doing wrong. I want to have the user enter a loan amount and a percentage, then in my spreadsheet i have the particular rate appear that corresponds to information inputed above.

    =IF(AND(C2<=250000),IF(AND(F2<=75%),DATA!J4),IF(OR(C2<=250000),IF(AND(F2>=76%,F2<=90%),DATA!J5,DATA!J6)))

    This is what I have so far.

    If loan amount is under 250,000 and greater than or equal to 76% and less than equal to 90% then return a figure on the sheet named Data J5. I have other conditions that I have to add to this as well. However if I can work out how to do these, then I should be ok.

    Can anyone help me please

  2. #2
    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: Help with IF AND Statements

    try...

    =if(and(loan-amount<250000,loan-amount>=0.76,loan-amount<=0.9),!DataJ5,whatever-else-you-want-to-show)

    the =and() works like this...
    and(condition1,contition2,condition3)
    so combining that with an if() gives you....
    =if(and(condition1,contition2,condition3),option1, option2)
    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

  3. #3
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,366

    Re: Help with IF AND Statements

    cross post.
    I think people forget the word "THANK YOU!!!!" Do you still know it???

    There is a little star ( ADD REPUTATION ) below those person who helped you. Click it to say your "PRIVATE APPRECIATION TO THEIR EFFORT ON THEIR CONTRIBUTIONS "

    Regards,
    Vladimir

  4. #4
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: Help with IF AND Statements

    Not to mention it's obviously an Excel question posted in Outlook Formatting and Functions forum.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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