Conditional Formatting Google Sheet based on a CELL value - google-sheets

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?

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

Google sheets - Relative conditional format based on cell above

I search in the deepest parts on the internet for a google sheets relative conditional formating based on the cell above value, which means, that whenever i add a new value in the cell below, it will automatically check the cell above value and format the cell according to it.
I've finally came to the solution explained below.
The result will be something like this:
I hope it works for you, weary traveller.
Select the range of cells that you want to format.
Go to >Format > Conditional Format > Add rule.
Under format rules select the option "Custom Formula is".
Paste the next formula if you want to check that your current cell is BIGGER THAN the cell above: =INDIRECT(ADDRESS(ROW();COLUMN())) > INDIRECT(ADDRESS(ROW()-1;COLUMN()))
OR the next formula if you want to check that your current cell is LOWER THAN the cell above: =INDIRECT(ADDRESS(ROW();COLUMN())) < INDIRECT(ADDRESS(ROW()-1;COLUMN())).
Select the color you like to apply, and click in DONE.
If the range of cells is A2:G, this rule will also work:
=AND(A2<>"",A2<A1) [RED]
=AND(A2<>"",A2>A1) [GREEN]

Google Sheets formula for conditional formatting: "if cell contains exact text text" then

Trying to write a basic conditional formatting on a cell so "if cell C58 contains the string 'long cont' then turn cell D58 turn it green".
Any ideas what the syntax is?
Thank you.
Ed
Click the cell you want to highlight.
Open the conditional formatting dialog.
Select "custom formula is".
Type your formula, e.g. =(I192 = "yes").

Conditional formatting based on another cell's text

I have a Google Sheets table of names and statistics that go along with said names. I'm trying to use a dropdown menu on a specific cell so that when I select a specific name from the dropdown, all of the cells that start with the same name will be highlighted.
Assuming the dropdown is in B2. Please select entire sheet and: Format > Conditional formatting..., Format cells if... Custom formula is and:
=regexmatch(A1,"^"&$B$2)
with highlighting of your choice and Done.
Since for all of the cells that start with the same name this could be slow.
custom formula: =IF(I1=H$4, 1)

How to use conditional formatting in Google Sheets to highlight row based on value in cell

I have a google sheets document where I have cells A1:Z1. In AA1, I have a value total. If that value is greater than 5, I would like A1:Z1 to be highlighted in red. I then want to do this for every row down the sheet. Could somebody help be out with this? I tried using other answers here, but I can't get it to work.
First of all take a look at Use conditional formatting rules in Google Sheets.
On your computer, open a spreadsheet in Google Sheets.
Select the cells you want to apply format rules to (A1:Z1).
Click Format and then Conditional formatting. A toolbar will open to the right.
Under the "Format cells if" drop-down menu, click Custom formula is. If there's already a rule, click it or Add new rule > and then Custom formula is.
On custom formula put this =SUM(A1:Z1) > 5
Choose other formatting properties.
Click Done.
The result will be this.

How to reference cells in a conditional formatting formula rule?

I wold like to use the value of the current cell into to "Custom formula is.."
when using conditional formatting.
I would like to enter a "Custom formula", which will check if value of cell is ether'a' or 'b'.
What will be correct syntax?
Please try:
Select the range the conditional formatting is to apply to, say C5:C10. Format, Conditional formatting…, Add new rule, Format cells if…, Custom formula is:
=or(c5="a",c5="b")
Select your Formatting style (Default may suit) and Done.

Resources