+ Reply to Thread
Results 1 to 15 of 15

Need to Auto highlight row specific color if certain word is in a cell on that same row

  1. #1
    Registered User
    Join Date
    09-24-2013
    Location
    Clermont, Florida
    MS-Off Ver
    Excel 2022
    Posts
    16

    Need to Auto highlight row specific color if certain word is in a cell on that same row

    If I populate a cell on the master worksheet with a certain word/phrase from the dropdown list on the individual worksheets, I would like the row on the master worksheet to highlight a certain color.

    Example:
    If the cell on the master worksheet has the word "No Start" the row on the master worksheet would have No highlight.
    If the cell on the master worksheet has the word "Started" the row on the master worksheet would be highlighted Yellow.
    If the cell on the master worksheet has the word "Hold" the row on the master worksheet would be highlighted light Blue.
    If the cell on the master worksheet has the word "Completed" the row on the master worksheet would be highlighted light gray (for gray out).

    More detail below

    I have a workbook that has multiple worksheets with 1 being the master worksheet (were I summarize information gathered on the other worksheets)

    Each row on the master worksheet is a summary of data entered from each worksheet (this results in 40 or more rows on the master worksheet if I have 40 or more worksheets with detailed data.

    I have my individual worksheets copying specific cell data onto the master worksheet. Some of the data is from drop down lists I have created on the individual worksheets. The dropdown list has the 4 words No Start, Started, Hold and Completed. I want those 4 words to trigger the color or lack of color for the row on the Master worksheet

    Thanks

  2. #2
    Registered User
    Join Date
    10-10-2013
    Location
    New York, NY
    MS-Off Ver
    Excel 2010
    Posts
    15

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    Which column has the dropdown list, and what is the first row in your table 'master worksheet'?

  3. #3
    Registered User
    Join Date
    10-10-2013
    Location
    New York, NY
    MS-Off Ver
    Excel 2010
    Posts
    15

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    Sorry, trying to figure out how to post spreadsheet.

  4. #4
    Registered User
    Join Date
    09-24-2013
    Location
    Clermont, Florida
    MS-Off Ver
    Excel 2022
    Posts
    16

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    Column C has words that were chosen from the dropdown list (dropdown list is actually on seperate worksheet within the workbook and then copied over to the master worksheet). Row 3 is the starting row in the Master worksheet. See below on the title of STATUS how one of the 4 words/phrases is listed.
    The 4 words/phrases are NO START STARTED HOLD or COMPLETED

    LOT # STATUS
    z001 No Start
    z002 No Start
    Last edited by arjoyce; 10-10-2013 at 09:40 PM. Reason: No START should have been shown under STATUS

  5. #5
    Registered User
    Join Date
    10-10-2013
    Location
    New York, NY
    MS-Off Ver
    Excel 2010
    Posts
    15

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    Ok, try this.

    Highlight the whole table beginning with the top left most cell.
    ==>On the home tab, go to conditional formatting, and select New Rule.
    ==> Select the option called "Use a formula to determine which cells to format"
    ==> In the formula bar below, enter: =$C3="Started"
    ==> Select Format
    ==> Go to tab called Fill
    ==> Select Yellow
    ==> Push OK 2x

    ==> Follow the same procedure again, but enter this formula in the formula bar: =$C3="Hold"
    ==> Format as light blue
    ==> Ok 2x.

    Last formula will be =$C3="Completed" and format grey.

  6. #6
    Registered User
    Join Date
    09-24-2013
    Location
    Clermont, Florida
    MS-Off Ver
    Excel 2022
    Posts
    16

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    I tried but it did not work. I also selected "highlight cell rules" and that worked for the cell but not the entire row.

    If I understand you correctly, since I want to highlight the entire row 3 I would select A3-Q3 and then to to conditional formating, correct

  7. #7
    Registered User
    Join Date
    10-10-2013
    Location
    New York, NY
    MS-Off Ver
    Excel 2010
    Posts
    15

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    Can you please post the formulas you input to the conditional formatting formula bar?

    And yes, that is correct.

  8. #8
    Registered User
    Join Date
    09-24-2013
    Location
    Clermont, Florida
    MS-Off Ver
    Excel 2022
    Posts
    16

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    I put =$C3="Started"

  9. #9
    Registered User
    Join Date
    10-10-2013
    Location
    New York, NY
    MS-Off Ver
    Excel 2010
    Posts
    15

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    That looks right. Did you select a color from the format tool and hit Ok two times?

    By the way, go to conditional formatting, manage rules, and just tell me how many rules are currently active. (you need to be selected on any one of the cells in the range.)

    Let's see if we can determine what the issue is here.

  10. #10
    Registered User
    Join Date
    09-24-2013
    Location
    Clermont, Florida
    MS-Off Ver
    Excel 2022
    Posts
    16

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    I selected Yellow for "Started" and when that did not work I did not try the 2 other words
    I went to manage rules and got a little confused
    I attached the workbook

  11. #11
    Registered User
    Join Date
    09-24-2013
    Location
    Clermont, Florida
    MS-Off Ver
    Excel 2022
    Posts
    16

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    I also hit OK 2 times but forgot to mention it in previous response

  12. #12
    Registered User
    Join Date
    10-10-2013
    Location
    New York, NY
    MS-Off Ver
    Excel 2010
    Posts
    15

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    You did not highlight the entire table.

    Go to conditional formatting, manage rules.

    Change the applies to formula bar to: =$A$3:$Q$50.

    Then double click the rule to edit it, and enter =$C3="Started" in the formula bar.

  13. #13
    Registered User
    Join Date
    09-24-2013
    Location
    Clermont, Florida
    MS-Off Ver
    Excel 2022
    Posts
    16

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    I just did it but I put Q100 since I need 100 rows to capture all my worksheets.

    The yellow works now except that it highlights the row below
    Z001 is located on row 4. If I have "Started" for Z001 it yellow highlights row 5

  14. #14
    Registered User
    Join Date
    10-10-2013
    Location
    New York, NY
    MS-Off Ver
    Excel 2010
    Posts
    15

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    Sounds like you followed my first instruction, but not my second.

    Quote Originally Posted by bschwartz_1 View Post
    Then double click the rule to edit it, and enter =$C3="Started" in the formula bar.
    Please confirm the formula is still correct. Go to manage rules, and double click the rule. Delete the formula and replace it with:

    =$C3="Started"

  15. #15
    Registered User
    Join Date
    09-24-2013
    Location
    Clermont, Florida
    MS-Off Ver
    Excel 2022
    Posts
    16

    Re: Need to Auto highlight row specific color if certain word is in a cell on that same ro

    I deleted and put in =$C3="Started"
    and it still highlights the row below

+ 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. [SOLVED] Color Row If Cell In Column Contains Specific Word
    By awagenhurst in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-16-2013, 09:45 AM
  2. Get Highlight Color in Excel Like MS-Word Not Fill-Colour?
    By e4excel in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 10-25-2011, 01:24 AM
  3. auto-color / highlight based on a designated range
    By melitza in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-17-2008, 03:06 PM
  4. highlight/color cells with specific character inside
    By markx in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 10-20-2005, 06:05 AM
  5. [SOLVED] highlight/unhighlight (or color/uncolor) cells containing a specific character
    By markx in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-13-2005, 11:05 AM

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