+ Reply to Thread
Results 1 to 8 of 8

IF statement formular

  1. #1
    Registered User
    Join Date
    07-06-2006
    Posts
    8

    IF statement formular

    Hello,

    Hi Guys,

    The attached spreadsheet is used to assess if we will invest in certain companies.

    I have tried the following IF statement but it does not work.

    =IF(OR(C19<Criteria!H4,C8<Criteria!H11,C22<Criteria!H18),"LLLLLL","")



    Any help would be great

    Thanks
    Redlion
    Attached Files Attached Files
    Last edited by redlion; 07-16-2006 at 11:14 PM.

  2. #2
    Valued Forum Contributor
    Join Date
    07-11-2004
    Posts
    851
    if you mean greater than or equal to

    if(C19>=Criteria!H4......
    not a professional, just trying to assist.....

  3. #3
    Registered User
    Join Date
    07-06-2006
    Posts
    8
    Hi duane,

    I can't seem to get it to work, am I using the right IF Statement?



    regards
    Redlion
    Attached Files Attached Files

  4. #4
    Valued Forum Contributor
    Join Date
    07-11-2004
    Posts
    851
    I have not opened your attached file = what are you trying to accomplish?

  5. #5
    Registered User
    Join Date
    07-06-2006
    Posts
    8
    I have some Investment Criteria that must be meet if I am to invest in them.

    the following must be meet to Invest

    Current Ration must be at least 1
    Return on Shareholders funds exceeds 15% and
    Dividend Yield exceeds 4.5%

    I would like an IF statment to tell me if any of these are not meet.

  6. #6
    Valued Forum Contributor
    Join Date
    07-11-2004
    Posts
    851
    assuming your cell references are correct

    =IF(OR(C19<Criteria!H4,C8<Criteria!H11,C22<Criteria!H18),"LLLLLL","")

    would appear to return LLLLLL if any criteria not met, and "" if all are

  7. #7
    Registered User
    Join Date
    07-06-2006
    Posts
    8
    Thank you very much duane

  8. #8
    Forum Contributor
    Join Date
    11-23-2005
    Location
    Perth, Australia
    Posts
    218

    IF Statement Formula

    Try Something like this
    =IF(AND(C19>=Criteria!H4,C8>Criteria!H11,C22>=Criteria!H18),"","LLLLLL")

    If the below values are always the same you could simplify matters by putting
    =IF(AND(C19>=1,C8>15,C22>4.5),"","LLLLLL")
    Current Ration must be at least 1
    Return on Shareholders funds exceeds 15% and
    Dividend Yield exceeds 4.5%

    let me know how it goes

+ 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