5

So I tried experimenting with conditional formatting, but unable to find a way to highlight the cells in the column if their value is greater than the one in the next column under the same row.

For example:

102 | 110 (highlight right cell)
130 | 120 (highlight left cell)
122 | 133 (highlight right cell)

How would I go about doing this?

1
  • What product are you using? Don't tag with both Excel and Google sheets. There are differences, and what applies to one will not apply to the other.
    – teylyn
    Commented Jul 5, 2017 at 5:50

2 Answers 2

7

Here are the steps for Excel. Assuming the first value is in A1,

  • select A1 to B3
  • click Conditional Formatting > New Rule
  • click Use a formula to determine
  • enter this formula into the formula box and take care with the dollar signs

    =A1=MAX($A1:$B1)

  • Click the Format button and set the desired format.

  • confirm all dialogs.

enter image description here

In Google sheets, select the cells, create a conditional format with "Custom formula is" and apply the same formula.

enter image description here

1
  • Thanks. I did something similar. Instead I used a custom formula where I did =A1 < B1 instead of using MAX. The targeted cells were the values in 1 column. I had to repeat the same thing for the other column.
    – btrballin
    Commented Jul 5, 2017 at 17:58
0

Sorry, didn't see the Excel tag, only the Google Spreadsheets. This example is for Google Sheets. The concept is identical, but the wording may be different for Excel.

Use conditional formatting.

  • In the left column, select your range (eg A1:A3) then under Format select Conditional Formatting.
  • Select the Formatting Style greater than
  • In the "Value or formula" field enter `=B1'

Repeat for column B, referencing cell A1. enter image description here

2
  • No need for two different rules. See my answer for how to do this with one rule.
    – teylyn
    Commented Jul 5, 2017 at 6:02
  • Thanks for the answer. I am actually using Google Sheets, but Excel and Sheets are so similar that I just added both as tags to increase the overall reach of my question
    – btrballin
    Commented Jul 5, 2017 at 18:25

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .