+ Reply to Thread
Results 1 to 3 of 3

Formula with mulitple condtions

  1. #1
    Lee
    Guest

    Formula with mulitple condtions

    What formula could I use to include all of the following condtions?

    If < 1000 then Semi Annually
    If >1000<2000 then Quarterly
    If >2000 then Monthly

    I really hope someone can help with this!


  2. #2
    Forum Contributor
    Join Date
    06-23-2004
    Location
    Houston, TX
    Posts
    571
    Quote Originally Posted by Lee
    What formula could I use to include all of the following condtions?

    If < 1000 then Semi Annually
    If >1000<2000 then Quarterly
    If >2000 then Monthly

    I really hope someone can help with this!
    What happens if A1=1000?

    Anyway, try this,

    =if(A1<1000,"Semi Annually,if(and(A1>1000,A1<2000),"Quarterly,"Monthly"))

    BTW, even if you also do not have anything for A1=2000, the formula above will
    return "Monthly" for all values of A1>=2000.



    Regards.
    BenjieLop
    Houston, TX

  3. #3
    Anne Troy
    Guest

    Re: Formula with mulitple condtions

    =If(a1<1000,"Semi Annually",if(a1>1000,"Quarterly","Monthly")))
    However, you should decide which side to put exactly 1000 on, and what
    happens if a1 is 0 or less?
    Maybe this will help:
    http://www.officearticles.com/excel/...soft_excel.htm
    ************
    Anne Troy
    www.OfficeArticles.com

    "Lee" <[email protected]> wrote in message
    news:[email protected]...
    > What formula could I use to include all of the following condtions?
    >
    > If < 1000 then Semi Annually
    > If >1000<2000 then Quarterly
    > If >2000 then Monthly
    >
    > I really hope someone can help with this!
    >




+ 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