+ Reply to Thread
Results 1 to 16 of 16

Turn Cell Color depending on Word

Hybrid View

  1. #1
    Registered User
    Join Date
    08-20-2012
    Location
    Santa Clara, CA
    MS-Off Ver
    Excel 2010
    Posts
    12

    Turn Cell Color depending on Word

    Hi all,

    I just have a simple conditioning formatting question.

    I want to be able to turn a cell into a certain color, depending on what I wrote in the cell. For example, any "AA" will be green and any "BB" will be red.

    In fact, it'll be even better if there's another way where I can make a list (on another sheet or whatnot) that has a list of all terms that I want to turn into green (cell color) and ones that I want to turn into red (cell color). For example, there's a place where I list all the terms that I want to be highlighted in green and excel can just pull from that list and turn my my cells that has any of those terms in that list to green (on another sheet of course). If this is not possible, I guess I'd have to set the condition one by one based on the text.

    Thanks!
    Maven

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

    Re: Turn Cell Color depending on Word

    maybe like this?
    CF ->use formula
    first rule
    =$A1=$H$1:$H$3 ->green

    $H$1:$H$3 - contains lists for color green
    second rule
    =$A1=$I$1:$I$3 ->red
    $I$1:$I$3 - contains lists for color red
    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

  3. #3
    Forum Contributor
    Join Date
    04-07-2009
    Location
    Rowley
    MS-Off Ver
    Excel 2007
    Posts
    326

    Re: Turn Cell Color depending on Word

    You can use a Named List and the =COUNTIF() function.

    As an example try this:

    On Sheet 1, Column A enter your list:
    PHP Code: 
         A
    1
    alpha
    2
    beta
    3
    delta
    4
    gamma 
    Next, select Cells A1 thru A4
    Select Formulas Tab
    Select Define Name
    In the "Name:" box, enter something like "GreenList"
    Make sure that the "Refers To:" box at the bottom shows: =Sheet1!$A$1:$A$4
    Click OK


    On Sheet 2,
    Select Home Tab
    Select your range of Cells A1, A2, A3
    On the ribbon click Conditional Formatting
    Click on New Rules, it’s near the bottom of the dialog box.
    Click Use Formula to determine which cells to format.
    Enter the formula:

    =COUNTIF(GreenList,A1)

    Click on the Format button
    Select the Fill Tab
    Select a Green color
    Click OK
    Click OK

    Now if you enter any word from your GreenList in cell A1, or A2 or A3 it should turn Green.
    Last edited by xenixman; 09-26-2012 at 10:50 PM.

  4. #4
    Registered User
    Join Date
    08-20-2012
    Location
    Santa Clara, CA
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Turn Cell Color depending on Word

    This worked! Thank you!!

    Just a question in regards to the second comment, because I'm a newbie, =COUNTIF(GreenList,A1) <-- what does A1 mean?

  5. #5
    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: Turn Cell Color depending on Word

    A1 is the criteria to base the count on, in other words, the value/text you want to count
    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

  6. #6
    Registered User
    Join Date
    08-20-2012
    Location
    Santa Clara, CA
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Turn Cell Color depending on Word

    Thanks! So I tried applying this to my whole sheet rather than just a column (ex. A1-A3) but it started randomly highlighting empty cells green. And the cells that already are on the list to be colored green didn't get turned green. How would you apply that conditional formatting to a whole sheet rather than just a column?

  7. #7
    Forum Contributor
    Join Date
    04-07-2009
    Location
    Rowley
    MS-Off Ver
    Excel 2007
    Posts
    326

    Re: Turn Cell Color depending on Word

    I tried applying this to my whole sheet

    A bit excessive in my opinion, but you apply it the same way as you would to any range of cells.

    1st) Select your cell or range of cells
    2nd) On the ribbon click Conditional Formatting

    If you select the entire sheet, then in the Conditional Formatting window,
    the Applies to Box should look like: =$1:$1048576

    As a test, I tried applying Conditional Formatting to an entire sheet and it worked fine for me.

    What does your word list look like?

    Understand, that the cells have to match exactly, and a space is considered a character to Excel.

    So Alpha and Alpha<space> as well as <space>Alpha are all seperate text strings and do not match.

  8. #8
    Registered User
    Join Date
    08-20-2012
    Location
    Santa Clara, CA
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Turn Cell Color depending on Word

    Quote Originally Posted by xenixman View Post
    I tried applying this to my whole sheet

    A bit excessive in my opinion, but you apply it the same way as you would to any range of cells.

    1st) Select your cell or range of cells
    2nd) On the ribbon click Conditional Formatting

    If you select the entire sheet, then in the Conditional Formatting window,
    the Applies to Box should look like: =$1:$1048576

    As a test, I tried applying Conditional Formatting to an entire sheet and it worked fine for me.

    What does your word list look like?

    Understand, that the cells have to match exactly, and a space is considered a character to Excel.

    So Alpha and Alpha<space> as well as <space>Alpha are all seperate text strings and do not match.
    So all my cells are definitely matching exactly to my original list.

    When you say the "Applies to" box should look like: =$1:$1048576, where is this Applies to box? I was under the impression that I have to put =countif(Greenlist,A1) in my box in the conditional formatting section.

  9. #9
    Forum Contributor
    Join Date
    04-07-2009
    Location
    Rowley
    MS-Off Ver
    Excel 2007
    Posts
    326

    Re: Turn Cell Color depending on Word

    On the ribbon click Conditional Formatting
    Select Manage Rules

    In the window that opens, in the center,
    there should be a small box under the words: Applies To

    If you are selecting the entire sheet,
    then the range of cells that the Conditional Formatting Rule is applied to
    should be: =$1:$1048576

    If you are selecting just a small section, say Column A & B down to row 10,
    then the range of cell is: =$A$1:$B$10

    Next, click on Edit Rule
    Another window should open, in the bottom center,
    there should be a box under the words: Format Values Where This Rule Is True
    this is where your Rule Formula is entered. IE: =COUNTIF(Greenlist,A1)

    So all my cells are definitely matching exactly to my original list.

    Does that mean it is working?
    It is highlighting only those cells that match your list?

  10. #10
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Turn Cell Color depending on Word

    If you attach your workbook (Go advanced> Manage attachments) we can troubleshoot your problem
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  11. #11
    Registered User
    Join Date
    08-20-2012
    Location
    Santa Clara, CA
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Turn Cell Color depending on Word

    Quote Originally Posted by ChemistB View Post
    If you attach your workbook (Go advanced> Manage attachments) we can troubleshoot your problem
    Hi all,

    Thanks for the tips. However it's still not completely working 100% right like the way it's supposed to. I have attached my workbook but changed the abbreviations for confidentiality purposes. As you guys can see, I have identified the abbreviation "SY" in my sheet as to color green. But in my main sheet, I typed SY in column DC and nothing happened. Furthermore, as you can see, there are random blank cells that became colored green.

    Thanks!
    Maven

    sample.xlsx

  12. #12
    Forum Contributor
    Join Date
    04-07-2009
    Location
    Rowley
    MS-Off Ver
    Excel 2007
    Posts
    326

    Re: Turn Cell Color depending on Word

    I checked your sample.xlsx and you have Conditional Formatting Rules all over your sheet that apply to all kind of random cells.

    Best advice is to clear your whole sheet of Conditional Formats and start fresh.

    To clear all your sheets of all Conditional Formatting,
    On the Ribbon, Select Home Tab,
    Select Conditional Formatting,
    Select Clear Rules
    Select Clear Rules from Entire Sheet

  13. #13
    Registered User
    Join Date
    08-20-2012
    Location
    Santa Clara, CA
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Turn Cell Color depending on Word

    Yup, I did that. But take a look at this most current sheet. It's still highlighting random items (blank cells) as well as not highlighting my keyword "SY" in the column DC. I've doublechecked my conditional formatting and it was set up correctly, so was my naming convention. But how come it's still not working correctly 100%? You can check it out here:SAMPLE2.xlsx

    Thanks!
    Maven

  14. #14
    Forum Contributor
    Join Date
    04-07-2009
    Location
    Rowley
    MS-Off Ver
    Excel 2007
    Posts
    326

    Re: Turn Cell Color depending on Word

    I checked Sample2 and like Sample 1 it has CF rules scattered about the whole sheet.

    To see what your have,
    On the Ribbon, Select Home Tab,
    Select Conditional Formatting,
    Click on Manage Rules

    At the top of the window is a box marked: Show Formatting Rules for:
    Scroll this box until you get to: This Worksheet

    I show Four (4) rules, all green, applied to Four (4) different ranges of cells.

    Also,

    If you scroll the box down to Screen 2, there is also a rule there.

    Get rid of all these rules.

    Select Conditional Formatting,
    Select Clear Rules
    Select Clear Rules from Entire Sheet

    Now recheck Manage Rules and make sure they are gone.

    Also most if not all of your cells have Hard Coded Colors in them,
    so applying CF appears to do nothing.

    You will need to clear all of the Hard Coded colors if you want to
    see the CF.

  15. #15
    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: Turn Cell Color depending on Word

    see if the attached gived you what you want. i removed all colors and CF from the entire sheet, and the applied CF to just that table range. using CF on anything more than the area you need will (to a greater or lesser extent) slow your performance down, because CF is very resource intensive.

    also, because you didnt indicate which values you wanted red and which green, i split your list on sheet 2 in half, put each half in its own column, and gave each a range name (red and green)

    let me know how this works for you?
    Attached Files Attached Files

  16. #16
    Registered User
    Join Date
    08-20-2012
    Location
    Santa Clara, CA
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Turn Cell Color depending on Word

    Hi all,

    Thanks for the help!

    @FDibbins: Yes, your excel sheet worked! Does that mean that I should be using the =ISNUMBER formula for the CF rather than the =COUNTIF?

    @xenixman: I did what you said (I swore I double checked and did it for Sample 2) but I redid it again for the third sample and as you can see, it's completely not working. I've deleted all the CFs in the whole worksheet and took away the hardcoded colors. I even screenshotted the empty CF list with the malfunctioning coloring on the excel sheet: 2012-10-01_11-51(2).jpg. I have double and triple checked that I got my names down on Sheet 2, and no CFs exist in Sheet 2 as well.

    Is this because I'm using the =countif formula?
    (This is the one that's not working: Sample3.xlsx... I'll be darned if it reverts again and you guys see all those CFs again...)

    Sorry for all these questions, I just want to get to the bottom of this why everytime I do it it doesn't work

    One last additional question: Since I depend on CF to color my cells, is there a way to make it "hardcoded" after the CF has changed it so that I can upload it onto Google docs and have it still retain the colors?

    Thanks!
    Maven
    Last edited by mavendark; 10-01-2012 at 10:01 PM.

+ 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