Highlight entire rows

Highlight entire rows

=($A1=criteria)

If you want to highlight rows in a table with conditional formatting, based on the value of cells in a specific column, you can use a simple formula that returns TRUE when the value in a column meets your conditions. The trick is to lock the column reference so that the row is free to change, but the column is fixed when the criteria is evaluated.

For example, assume you have a simple task list in cells B4:E12, and column D is “Owner”. If you want to highlight rows in the table where the owner is “Bob” you can use this formula:

=$D5="Bob"

Note: with conditional formatting, it’s important that the formula be entered relative to the “active cell” in the selection, which is assumed to be B5 in this case.

How this formula works

When you use a formula to apply conditional formatting, the formula is evaluated relative to the active cell in the selection at the time the rule is created. In this case, the address of the active cell (B5) is used for the row (5) and entered as a mixed address, with column D locked and the row left relative. When the rule is evaluated for each of the 40 cells in B5:E12, the row will change, but the column will not.

Effectively, this causes the rule to ignore values in columns B, C, and E and only test values in column D. When the value in column D for in a given row is “Bob”, the rule will return TRUE for all cells in that row and formatting will be applied to the entire row.

Using other cells as inputs

Note that you don’t have to hard-code any values that might change into the rule. Instead you can use another cell as an “input” cell to hold the value so that you can easily change it later. For example, in this case, you could put “Bob” into cell D2 and then rewrite the formula like so:

=$D5=$D$2

You can then change D2 to any priority you like, and the conditional formatting rule will respond instantly. Just make sure you use an absolute address to keep the input cell address from changing.

Named ranges for a cleaner syntax

Another way to lock references is is to use named ranges, since named ranges are automatically absolute. For example, if you name D2 “owner”, you can rewrite the formula with a cleaner syntax as follows:

=$D5=owner

This makes the formula easier to read and understand.

0 votes. 0 / 5

Excel - Excel Functions - Excel Formulas
Logo