+ Reply to Thread
Results 1 to 5 of 5

display content of a cell with conditions

Hybrid View

  1. #1
    Registered User
    Join Date
    02-27-2007
    Posts
    3

    display content of a cell with conditions

    I'm trying to create a formula that displays (even concatenates) the contents of a cell when two conditions are met. Any help?

    Thanks, Kirk

  2. #2
    Forum Expert oldchippy's Avatar
    Join Date
    02-14-2005
    Location
    Worcester, UK
    MS-Off Ver
    Excel 2007 (Home)
    Posts
    7,097
    Can you be a bit more specific?
    oldchippy
    -------------


    Blessed are those who can give without remembering and take without forgetting

    If you are happy with the help you have received, please click the <--- STAR icon on the left - Thanks.

    Click here >>> Top Excel links for beginners to Experts

    Forum Rules >>>Please don't forget to read these

  3. #3
    Forum Contributor
    Join Date
    03-14-2006
    Location
    Pakistan
    Posts
    1,791

    Lightbulb

    Quote Originally Posted by kirk
    I'm trying to create a formula that displays (even concatenates) the contents of a cell when two conditions are met. Any help?

    Thanks, Kirk
    make formula like this

    =if(and(condition1,condition2),cell,"")

    or with more detail

    =if(and(A1="good",B1="evening"),A1&" "&B1,"")

    Regards.

  4. #4
    Registered User
    Join Date
    02-27-2007
    Posts
    3
    I'd like to display the name of a resource (column A) if they have a certain skill set (listed in column C) and any value in column E.

    ~Kirk

  5. #5
    Forum Contributor
    Join Date
    03-14-2006
    Location
    Pakistan
    Posts
    1,791

    Lightbulb

    Quote Originally Posted by kirk
    I'd like to display the name of a resource (column A) if they have a certain skill set (listed in column C) and any value in column E.

    ~Kirk
    try this in (say) col F and copy down

    =if(and(A1="name",C1="skill",E1="any value"),A1,"")

    change "name" to a name of resource, "skill" to a proper skill which you want to match and "any value" with value that you want to be in col E against that name.

    hope this would help you.

+ 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