Jul 30 2019 06:29 AM - last edited on Nov 09 2023 11:09 AM by
I need all cells in a row to highlight a certain color if the data in one cell contains a specific word.
What I specifically want is for an entire row to turn grey if the status cell contains the word "SHIPPED." I know how to make that specific cell highlight the color I want, but not the entire row of the sheet.
Thank you for your help!
Mar 07 2024 09:35 AM - edited Mar 07 2024 01:20 PM
Here is a graphical example. Any cell in the data column that matches any one of the unique reference cells I want to highlight that row. Assume the Reference column needs to go on a separate tab?
Mar 14 2024 08:12 PM
Mar 19 2024 05:44 AM
Thanks this is great, is it possible to make it so it only changes the color of the row to a specific column rather than the entire row?
Mar 26 2024 07:11 AM
Good morning,
Appreciate the guidance you provided on this thread. for some reason, I inputted the instructions and for some reason when I select "No-show" from the drop down on Column " F" the red goes down a row. So it is not highlighting the row that the drop down in in. Please advise and thank you Yury.
Mar 29 2024 06:24 AM
Most probably references in formula and in Apply To range are not in sync. For example
we use in formula reference with first row and apply to the range which starts from the second row. If to change on row 2 in formula, it works
Apr 12 2024 08:32 AM
I believe I have followed your instructions correctly, but the desired result only works in the first row.
The desired result is that any row from 5 to 500 that contains a qty other than zero in column F be highlighted.
Thank you in advance for your help.
Jun 06 2024 10:41 AM
Hello @SergeiBaklan . I saw your numerous responses in another discussion. I'd be grateful if you can help me.
I wish for a row to become highlighted if one cell on this row in column Y: 1) has a date and 2) the date is today or in the past.
Thank you!
Jun 06 2024 04:08 PM
I believe I went into conditional formatting and selected 'use a formula to determine which cells to format'. Then, I put $H1='N'. The $ keeps the column consistent while the row may change. So, in your case, it would be $F5>0. I am not able to troubleshoot this at the moment, but let me know if it works.
Jun 07 2024 03:13 AM
Let's say you want to apply this to rows 2 to 100.
Select these rows; the active cell in the selection should be in the top row (row 2).
On the Home tab of the ribbon, click Conditional Formatting > New Rule...
Select 'Use a formula to determine which cells to format'.
Enter the formula
=AND($Y2<>"", $Y2<=TODAY())
Click Format...
Activate the Fill tab.
Select a highlight color.
Click OK, then click OK again.
Jun 07 2024 04:17 AM
Jun 18 2024 09:20 AM
Hey there,
Your solutions are awesome! Could you help me understand why my last row keeps being excluded from my conditional formatting? Even if I add all rows $J:$J a specified number of rows $1:$3000, it keeps excluding the last row when I adjust the sorting. For reference, I am conditionally formatting columns A through J based on the text in column K.
Thanks!
Jun 18 2024 09:39 AM
Hi - hopefully it is ok if I ask you the same question. I am not sure if the other user is still active. It is below.
Thanks!
Hey there,
Your solutions are awesome! Could you help me understand why my last row keeps being excluded from my conditional formatting? Even if I add all rows $J:$J a specified number of rows $1:$3000, it keeps excluding the last row when I adjust the sorting. For reference, I am conditionally formatting columns A through J based on the text in column K.
Jun 18 2024 09:57 AM
For entire column you shall use $K1 in formula, perhaps you use $K2 instead.
Jun 18 2024 10:02 AM
Jun 18 2024 11:32 AM
Jun 18 2024 12:02 PM
You are welcome
Jun 21 2024 03:09 AM
I'm trying to do a similar type of formatting where a row is highlighted when the end cell says completed. It works fine for one row however when I add more to the range the entire range is highlighted despite only the first row containing "completed" in the appropriate column. How do I make it so the row is only highlighted if the cell in column E for that row says "completed"
Jun 24 2024 06:15 PM
Your screen shot reveals the problem. Your formula of =$E$2="completed" has a cell reference that is fixed (nonvarying) both for the column and the row; i.e., only cell E2 will be used, regardless of which cell the formula is applied to. You want a fixed column (E) but a varying row. So use a formula of =$E2="completed"
Jun 25 2024 11:27 AM
Hello!
I am struggling with getting multiple CF rules to run in sequence. My goal is to have the row color change as new information is entered into specific cells in specific columns. However, I don't know how to write the formula.
Jun 25 2024 12:56 PM
CF iterates ranges cell by cell, apply to the cell formatting for the first rule which returns TRU and ignores other rules:
If we change rules order that will be
Depends on your goals use according order of rules.