+ Reply to Thread
Results 1 to 3 of 3

Conditional Formula that meet 2 criterias

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    05-09-2013
    Location
    Mauritius
    MS-Off Ver
    Excel 2010
    Posts
    116

    Conditional Formula that meet 2 criterias

    Hi all,

    I an using Excel 2010. I have a worksheet where Column B has a list of dates in the following format (Jul-10,Aug-10,.......and so on). In Column C, I have a list of 3 names (eg: Alan, Smith, Jones). I need a formula in Column D that will fill the cells with a condition similar to this:

    IF B1>= Jul-11 and C1= "Alan", THEN D1 = 60

    IF B1>= Jul-11 and C1= "Smith", THEN D1 = 55

    IF B1>= Jul-11 and C1= "Jones", THEN D1 = 40

    Thanks for your help!
    Last edited by zicitron; 09-25-2013 at 08:38 AM.

  2. #2
    Forum Expert
    Join Date
    04-22-2013
    Location
    .
    MS-Off Ver
    .
    Posts
    4,418

    Re: Conditional Formula that meet 2 criterias

    =If(and(B1>="Jul-11",C1="Alan"),60,if(and(B1>="Jul-11",C1="Smith"),55,if(and(B1>="Jul-11",C1="Jones"),40,"")))
    or
    =IF(B1>="Jul-11"",IF(C1="Alan",60,if(C1="Smith",55,if(C1="Jones",40,""))),"")
    Last edited by ragulduy; 09-25-2013 at 08:54 AM.

  3. #3
    Valued Forum Contributor
    Join Date
    02-05-2013
    Location
    Jakarta, Indonesia
    MS-Off Ver
    Excel 2013
    Posts
    571

    Re: Conditional Formula that meet 2 criterias

    If on column B format as date
    try this
    =IF(MONTH(B1)>=7,IF(C1="Alan",60,IF(C1="smith",55,40)),"")
    Click (*) if you received helpful response.

    Regards,
    David

+ 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: 0
    Last Post: 05-05-2013, 05:47 AM
  2. [SOLVED] Formula help required to enable conditional formatting of cells that meet multiple con
    By Barbara Excel in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-14-2012, 10:10 AM
  3. [SOLVED] Formula help required to enable conditional formatting of cells that meet multiple cond.
    By Barbara Excel in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 08-30-2012, 01:34 PM
  4. Using vlookup to get a sales volume but need to meet 2 criterias
    By Vinnie Chan in forum Excel Formulas & Functions
    Replies: 24
    Last Post: 11-07-2008, 05:07 PM
  5. Replies: 2
    Last Post: 10-24-2005, 02:05 PM

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