Home > database >  Conditional Formatting Google Sheet based on a CELL value
Conditional Formatting Google Sheet based on a CELL value

Time:12-22

I want to highlight the cell with a color of a cell (range G24:G90) if it contains a G4 cell value (dynamic). What is the best way for this?

CodePudding user response:

The best way for us to answer is, when you add samples of what you've tried and what result you get.

Although as much i understood from your short description, you can select those range you mentioned and click on "Conditional Formatting" and on the "Formula Rules" section select "Custom Formula" and type something like this based on your requirement:-

=$G24=$G$4

You can do Formatting Style based on what you like. You can learn more about advance conditional formatting on this doc :- Click here

  • Related