This tutorial explains how to use Excel formulas to format cells and entire rows based on the values you specify or based on another cell's value, and provides a handful of formula examples. Continue reading
by Svetlana Cheusheva, updated on
This tutorial explains how to use Excel formulas to format cells and entire rows based on the values you specify or based on another cell's value, and provides a handful of formula examples. Continue reading
Comments page 9. Total comments: 1709
OK, so I hope someone can help me figure this out. I have two columns, first one is year of purchase and the second is end of life (EOL). So, column one will have year 2019, column two has a formula in it that adds 5 years to the first column, (2019+5). So, purchase date will be 2019 and EOL is 2024. I'd like to use conditional formatting to show when the device is getting closer to replacement. This way the EOL column turns green as long as the device is 3 years old or younger, 3-4 years old would be yellow, 4-5+ years turns red.
Thanks for any help that can be given.
Aaron
Hi!
Here is the article that may be helpful to you: How to conditionally format dates and time in Excel.
The conditional formatting formula might look like this:
=(YEAR(today())-YEAR(A1))<3
We have somethings with expiration dates and want to make a spreadsheet that will show us (in yellow) when they are 30-60 days from expiring and (in red) when they are <30 days as well as past the due date, and all other cells are to remain white. We want the color in column C and the date in column B. We also only need the month and year and can't figure out how to set it to only show mm/yy (as in 09/22). Excell used to not be this complicated but we sure can't figure it out now-can anyone help with this?
Thank you!
Hello!
To show only the month and year, use a custom date format mm/yy , as described in this guide: How to change date format in Excel and create custom formatting.
To change the color of cells with a date by a condition, use this instruction: Conditionally format dates in Excel based on the current date.
Create 2 conditional formatting rules with formulas like this:
=A1-TODAY()<30
=AND(A1-TODAY()>30,A1-TODAY()<60)
I have column A with days and dates listed. I then have five columns (B:F) with a drop down menu of "Yes", "No", "Maybe".
What formula should I use in the Column A cells to turn just that cell in Column A to green if all other 5 columns (B:F) are "Yes" OR to turn the date cell in Column A to red if all other 5 columns (B:F) are "No". Those rows with a mix of yes, no, maybe could remain uncoloured in Column A.
Thanks in advance.
Hello!
To count the number of cells with a specific value, use the COUNTIF function.
An example of a conditional formatting formula:
=COUNTIF(B1:F1,"Yes")=5
Hi, I am trying to compare two table in two different sheets for duplicate values. Can i please ask what is your opinion in regards of what should i use for that ? Thank you in advance.
Hello!
Please have a look at this article - How to compare two Excel files or sheets for differences. I hope this will help.
I love your tools and they make my life much easier. I would like to format a cell based on the following:
If a cell in column L contains "N0" and I would like to format the corresponding cell in Colum A the same color as the format in Column L.
Hi!
In conditional formatting, you must specify the exact color of the cell. You cannot copy a color from another cell.
MY mac does have "new rules type" under "New format". What can I do ? TIA
Hi!
To create a new conditional formatting rule on mac, follow Home - Conditional formatting - New rule - Style: Classic - Use a formula (or other options of your choice).
Hi Alexander Trifuntov, it worked like charm , nice and appreciate you help and this portal
Sire, i trying to lookup 4 cells if any of the Cell contains text "Yes" than it should give a ouptu in a new cell with a text "Match found". How can i achieve this . Thanks
Hello!
Combine cell values into one string using the concatenation operator &. Search for "Yes" in this text string using the SEARCH function.
Please try the following formula:
=IF(ISNUMBER(SEARCH("Yes",A1&A2&A3&A4)),"Match found","")
Hi Alexander Trifuntov, it worked like charm , nice and appreciate you help and this portal
PLEASE HELP
I've tried everything. I have a formula that I know works in another excel sheet I already have. I have followed it exactly- to the the T again (and even copied and pasted) and copied and pasted the format only too. It goes like this
I have A4 Cell that will either contain 100% (or other varying percentages) (I've put this in text, general, numbers, percentages, etc. - still no fix). I want the B4 Cell to turn gray if A4 has 100%.
I select "Use a formula to determine which cells to format"
Format where this formula is true:
=$A4=''100" (I've also put "100%)
In my other excel where this formula works the formula is true when =$A4="Yes" but I'm guessing there is a problem because its a percentage or number? Please let me know
Hello!
A percentage is just a number. 100% is a percentage format for the number 1. So use the formula A4=1.
Read more how to display numbers as percentages.
Hello,
Thank you for the above post, I learnt a lot and have been able to conditionally format some cells I need but I am still stuck on a particular one.
I would like AE11 to turn yellow if greater than AE4 or green if less than AE4.
I have formatted these rules with no luck:
Rule 1: =AE11 >= $AE$4 (yellow)
Rule 2: =AE110,SUM(AE5:AE10),"") and the value of AE4 is generated based on the formula =IF($C$11 = 1,"1",IF($C$11 = 2,"3",IF($C$11 = 3,"5",IF($C$11 = 4,"6",IF($C$11 = 5,"8",IF($C$11 = 6,"9","")))))). Is the fact both cells contain a formula affecting my ability to conditionally format?
Please excuse my messy rules, just starting out.
Sorry, something has gone wrong with my post and now it doesn't make sense.
The crux of my problem is AE11 and AE4 both contain formulas. How do I conditionally format cells when the cells already contain a formula?
Hello!
Conditional formatting works on a value that is written in a cell or returned by a formula. Make sure that the formula doesn't return an error.
Hey,
I have checked my formulas in both AE11 and AE4 and they are both working.
The formula for AE11 is =IF(AD5>0,SUM(AE5:AE10),"")
While the formula for AE4 is =IF($C$11 = 1,"1",IF($C$11 = 2,"3",IF($C$11 = 3,"5",IF($C$11 = 4,"6",IF($C$11 = 5,"8",IF($C$11 = 6,"9",""))))))
They are both returning what is expected of them. I want to conditionally format AE11 so it turns yellow if greater than AE4 or stays white if less than or equal to AE4.
Hi!
Your second formula returns numbers as text. You cannot compare text and number. Do not use double quotes in it. Instead of "3" write 3.
Thank you, thank you, thank you! It is working perfectly now.
You are very generous in sharing your expertise.
Dear Alex,
I need to fill the current cell with some colour if the font colour of the matching data from another sheet is red. Kindly tell us the syntax ?
Thanks in advance
Hi!
To determine the color of a cell in a conditional formatting formula, use the GetCellColor custom function. The following tutorial should help: How to get the color code of a cell.
I hope my advice will help you solve your task.
Thank you so much
Dear Sir/Mam,
Need support for excel formula.
I want to show aging report to management.
if last three days not single qty dispatch showing colour Yellow, if not dispatched last 5 days showing colour Red.
please supoort.
I have data
Date wise FG in qty & date wise dispatch qty,
Regards,
Indrajit Raut
Hello!
You can find the examples and detailed instructions here: How to conditionally format dates and time in Excel - built-in rules and formulas.
I am using conditional formatting on a calendar. I created a scheduler where I enter appointments and the appointments then appear on the calendar using a vlookup. The scheduler is just a pivot table that is very rudimentary, but it really looks nice when it is moved to the calendar. The problem I am having is that when I try to search the pivot table for the condition it is highlighting everyday on my calendar because it is picking up the formulas in the pivot table rather than the results of the formulas. How do I get the conditional formatting to search for the value/results that the formulas give rather than the formula itself?
Hi!
Unfortunately, I can't understand your question. I don't know what formula you're using, but conditional formatting works with values.
Hello, hoping you can help me! I have a spreadsheet with column headings:
BUDGET - these are $ values
ACTUAL - these are $ values
VARIANCE - this is a % difference
I want to use conditional formatting in the ACTUAL cell BUT based on the result in the VARIANCE cell, eg:
If the VARIANCE is >90%, then format ACTUAL green
If the VARIANCE is between 76%-89%, then format ACTUAL orange
If the VARIANCE is <75%, then format ACTUAL red
Hoping you can help! Thanking you in anticipation!
Hi!
Have you tried the ways described in this blog post? Pay attention to the following paragraph of the article above – Formulas to compare values. Create a separate rule for each color.
I want to highlight the corresponding values of Y axis with X axis. I have about 3000 units.
V lookup can find only 1 data at a time. I am looking for the way where i can find all 3000 values in X axis and their corresponding Y axis value (it is in text format)
Hi!
Your explanations are not very clear, but maybe this guide will help you to find several values at once: Vlookup multiple matches in Excel with one or more criteria.
If this is not what you wanted, please describe the problem in more detail.
I am creating a spreadsheet where I have a drop-down with numbers 1, 2, and 3 in column C. I want to associate a different set of locker combinations to each number in column D depending on which number I select in column C... how can I best accomplish this?
Thank you!
Hello!
The dropdown list writes numbers 1, 2, or 3 to the cell. Use the IF function or the CHOOSE function to associate different locker combinations with this number.
I hope it’ll be helpful.
Hello,
I'm having trouble getting my conditional formatting to work. I have a column formatted to turn red, yellow, or green, based on how far out the date is. That part is working fine, however, I also have formatting set to grey the cell out if a separate column is marked "yes". This is working on some cells but not others and I see no reason why it shouldn't work. I have tried completely deleting all formatting and starting over. I have tried using just the grey format and it still only applies to the same cells and not the others. My formula is simple and reads =R2="yes". Do you know why this works on some cells and not others?
Hello!
Unfortunately, without seeing your data it is difficult to give you any advice. Check if other conditional formatting rules apply to these cells. Also, check the values in column R. There may be extra spaces or other characters.
I have a spreadsheet (spreadsheet 1) with all addresses in our county (about 140,000). Those addresses have latitude and longitude assigned to them.
I have another spreadsheet (spreadsheet 2) of about 300 people who signed up and gave their address to participate in a program to pick up material at their home for free. I want to conditionally match those addresses with addresses in spreadsheet 1 so I can locate people that signed up on a map using their latitude and longitude (this method is more accurate than other methods available).
Using the following formula I got about 80 of the 300 addresses in spreadsheet 2 to match with addresses in spreadsheet 1 =COUNTIFS(Address, $O2)
(Address in that formula is a Named Range in spreadsheet 2, which I read enables me to compare columns from two different spreadsheets, and it worked.)
The failed matches is because people who signed up did not always write their street name the same way the county has it in its records. But they almost always get their street number correct, and the first word of the street name, so I am guessing matching about the first 12 characters will capture many more matches.
So, I want to conditionally format a match of the first 12 characters in the address column on spreadsheet 1 with the first 12 characters in the address column on spreadsheet 2.
I have tried =COUNTIFS(LEFT(Address,12),LEFT($O2,12)) and a number of other formulas, but all have been rejected by Excel. Help getting the correct formula would be greatly appreciated.
Hello!
COUNTIFS function cannot use formula instead of a range of values. If you want to count the number of matches, use the SUMPRODUCT function.
=SUMPRODUCT(--(LEFT(Address,12)=LEFT($O2,12)))
You can also use the SEARCH function to search for matches.
=SUM(--ISNUMBER(SEARCH(LEFT($O2,12),Address)))
I hope it’ll be helpful. If something is still unclear, please feel free to ask.
Thank you Alexander for your swift response! I apologize for my long-delayed Thank You.
I wish I could say your answer worked. It is entirely possible your answer would work if I had more knowledge on how to apply it.
Bottom line is after trying your formulas (probably wrongly) I gave up and used a geocoding website (not perfect results, but appears to be pretty good). Even if I were able to use your formulas properly, this kind of problem really needs a fuzzy match, because of the mistakes people make when they write their address. From what I have read that is far trickier than what I asked about and beyond my very basic Excel skills, so rather than try to become an Excel expert for this one problem I decided to give up.
Thank you again for trying to help me, and for helping others here!
I need to the following to be conditionally formatted in the following manner:
1. if Column F = 4 I need the cells that have an "R" in columns G-W to be red.
2. if Column F = 3 I need the cells that have an "R" in columns G-W to be yellow.
3. If Column E = Y I need names in column C to be highlighted in Blue.
Any help would be greatly apprciated
Hello!
Apply conditional formatting to cells in columns G through W with a formula:
=AND($F1=4,G1="R")
It will be useful for your task to learn how to use absolute and relative references in conditional formatting formulas.
I hope my advice will help you solve your task.
Your created a Conditional Formatting Rule that will highlight the cell if any of the values in the range A3:A50 meets or exceeds the new Client Goal of 3 in cell A1, using this Rule: “=$A$3>=$A$1”. However, the formatting was changed for the entire range whether the criteria was met or not. What probably went wrong?
A. The Conditional Formatting Rule should be: =A$3>=$A$1
B. The Conditional Formatting Rule should be: =$A$3=A1
C. The Conditional Formatting Rule should be: =$A$3>$A$1
D. The Conditional Formatting Rule should be: =A3>=$A$1
Hello!
For the range A3:A50, create a conditional formatting rule with the formula -
=A3>=$A$1
The following tutorial should help: How to change background color in Excel based on cell value.
A1='Sheet2'!H9
when applying conditional formula in A1 as
Cell value>=$W$12+$Y$12+$AA$12+$AC$12 fill red colour
not working why?
Hi!
Based on your description, it is hard to completely understand your task. Check if you are using absolute and relative references in conditional formatting correctly.
If this is not what you wanted, please describe the problem in more detail.
Resolved
'Sheet2'!H9 stored as text
I have a spread sheet where I need column (AM) to turn red if any of the information in Columns (Q), (X) or (AD) have turned red. Columns Q, X and AD are all formatted differently.
Q - Cell value is equal to NO (turns red)
X - Cell value greater than 3 (turns red)
AD - Cell value is less than -3 (turns red)
A colleague of mine had worked it out, but in his example all of the cells were formatted the same and his formula was:
=OR(A2="No",B2="No")
I'm not sure how to change it to make it work.
Any help would be greatly appreciated!
Hello!
If I understand your task correctly, try the following conditional formatting formula:
=OR(Q1="No",X1 > 3,AD1 < -3)
Hope this is what you need.
Thank you Alexander. I appreciate your help. The solution you provided, worked, kind of. It ended up turning cells red which should not have turned red.
But thank you for your help!
HI Have applied conditional formatting to excel spreadsheet to highlight dates of overdue , due and coming due - however even though the range is set to the entire data collection only half is working correctly - if i insert a line above the part that is not working then it will work and another line does not - it seems like only part of data will work
Hi!
I don't see your data and I don't know your conditional formatting formula. So I can't give you any advice.
Hello,
I have a list of numbers (List A) that I want to have highlighted in another list (List B), that contains even more numbers.
I've tried to conditionally format the cells of list B by using this formula:
=COUNTIF('List A'!$A$2:$A$737,'List B'!$A$2:$A$1163)>0
on the range $A$2:$A$1163 but nothing happens.
Do you know what could be the problem?
Hello!
Apply this conditional formatting rule to a range ’List B’!$A$2:$A$1163
=COUNTIF(‘List A’!$A$2:$A$737, ‘List B’!A2)>0
The following tutorial should help: How to highlight duplicate cells and rows in Excel.
Thank you very much!!
Hello.
I'm having trouble understanding conditional formatting.
If the length of a string in column Q exceeds the integer in its corresponding (same row) H column cell, I want the column Q cell in red.
The following formula works:
=LEN(Q1)>$H1
but the following doesn't:
=LEN(Q4)>$H4
Could you help me understand why one works while the other does not?
I feel that both should work the same, since the only difference is the row both cells are in.
Thank you for your time.
Hello!
Pay attention to the first paragraph of this article. Select the range of cells you want to format (ex. Q1:Q4) and then apply the rule with the first formula
I'm trying to use conditional formatting to highlight rows based on the contents of the first data column, i.e., if A6="Coating", then A6:J7 get formatted accordingly. In columns A:C and F:J, row 6 and 7 are merged and format properly, but D:E are not merged and only row 6 follows the rule, not 7. I have been searching for two days, but have not found the answer. I know there's a smart person out there who already knows the solution, it's just not me...
Hi!
Based on cell A6, you can apply conditional formatting to only one row. You need to create a separate rule for the second row.
I tried that to no avail. I'm not expert by any means, but I've always been able to figure it out or find the answer I've needed. I'm seriously stuck on this.
Hi!
Create two conditional formatting rules separately for 6 and 7 lines. Apply both these rules to this formula: A6="Coating"
I hope this will help
Hi there, hoping you can help - i am wondering if its possible to conditionally format based on whether a cell value is present in a cell or not? I have a calculation running down column D - =((C1-$H$1)-B1)
but sometimes the $H$1 is not present and i want to hilight cells which dont use that reference. is this possible?
Hi!
If you want to highlight cells that correspond to an empty cell in column H, then you can use the conditional formatting formula
=ISBLANK(H1)
If you want to highlight cells where there is a reference to $H$1 in the formula, you can use the conditional formatting formula
=ISNUMBER(SEARCH("$H$1",FORMULATEXT(D1)))
I hope it’ll be helpful.
Second forumla worked perfectly,
Fabulous, thank you so much for your help!
Hi :)
I have a spreadsheet with the delivery status of my goods, and I'm trying to highlight the products that are delayed. So I have a column A with the week limit a good can depart and a column B with the actual date of departure of said goods.
I’m currently working with the formula ISOWEEKNUM(BF76)>BE76, but I don’t want to manually input this formula to every line of my excel sheet, but I need it to be successive, so for the next line I need it to be ISOWEEKNUM(BF77)>BE77, ISOWEEKNUM(BF78)>BE78 and so on and so forth.
Can you help ?
Thank you !!
Hi!
Here is the article that may be helpful to you: How to copy formula in Excel with or without changing references.
I hope it’ll be helpful.
Hi,
I have a spreadsheet for stores with less hours with transactions than approved.
I have Column B with the hours the store should be open. With Dates from Column D to Column AE for 3 weeks worth of data.
I want to conditional format to highlight any variance to the hours in Column B that are 3 or more hours difference to the budgeted hours in Column B. So would apply to a whole table of data, but could be conditioned across so the condition stays even when I change Store #s and Dates on the sheet.
Hi!
Use mixed cells references in conditional formatting formula:
=$B1-C1>3
Apply this rule to the entire range from Column D to Column AE.
Hi there, I have a spreadsheet where I only want to highlight the numbers greater than 0 (across 50 columns) for specific rows only (these rows have the same title "MISS"). Could you please assist with the correct formula? Thank you!
Hello!
For a conditional formatting range of B1:Z1 (or greater), use this formula:
=($A1="MISS")*(B1>0)
For more information, please see article Relative and absolute cell references in Excel conditional formatting.
Thank you so much!
I have a sheet with data in column F (formatted to number) & G (Formatted to currency) - I'm trying to highlight cells in column G that are blank or $0.00 where there is a number in F. Anything I've tried is highlighting random cells in G.
Hello!
Try using this conditional formatting formula:
=(G1=0)*ISNUMBER(F1)
I hope it’ll be helpful.
Hi
I have a main sheet that automatically updates from 3 other sheets.
I would like the cells (on main sheet) that are blank to be filled green.
For some reason it's not working, can you help?
Hi!
Use conditional formatting based on cell value. New formatting rule - Format only cells that contain - Blanks.
Or use conditional formatting formula -
=ISBLANK(A1)
Hi!
I am trying to use the following:
C1 - C100 contains valued nr (quantity)
D1 - D100 contains the requested quantity
each time C# is smaller than D# i want C# to be red.
i can make it for each cell, but cant make it on all of the cells (1-100) at once instead of using the formula 100 times.
how can i make the formula work on a range of cells? (C# < D#)
Hello!
When creating a conditional formatting rule, apply it directly to a range of cells. Or copy the conditional formatting, as described in this guide.
This should solve your task.
Hello,
I have a Query,
Can i Auto Fill the Column B, based on Column A Details.
Exampls: if i mention Product 1 in Column A, It has to fill the details in column B
Hi!
To automatically filling a column based on the contents of another column, try the VLOOKUP function
Hello Team,
I have formulas that do calculations and display the result in that cell. (basic stuff)
I would like to highlight the cells depending on the results of these calculations.
When I create a rule in Conditionnal formatting, it uses the content of the cell, which is a formula. instead of using the value/result from it. Is there a way around this ?
Thanks.
Hello!
Conditional formatting formulas use cell values that are obtained using calculations. You may have disabled the automatic calculation of formulas.
Hello,
Lets say I created an index of part locations and I named the sheet Index. It has two columns, parts and location. I created a new sheet and I want the location of the part to automatically fill when I'm looking it up. For example, I type in Part1 and in the second column Location1 is automatically filled with the correct location. I appreciate the time!
Hello!
You can use the VLOOKUP function to automatically search for the desired value in a list.
I hope it’ll be helpful. If something is still unclear, please feel free to ask.
I want to know if it is possible to highlight a cell when it is one or more days before the date in another cell.
M2 = 01/02/2022
R2 = 01/04/2022
So can I highlight M2 based on it being more than one day before R2?
Hello!
Please check out the following article on our blog, it’ll be sure to help you with your task: Excel conditional formatting for dates & time.
Hope you’ll find this information helpful.
I have a data. In which I want to know if A1 has 1 then D1 should be yes. If it is updated as no then the D1 cell should highlight in red. I tried many ways but was not successful. Could you please help me on this.
Hello!
Please try the following conditional formatting formula:
=(A1=1)*(D1="Yes")
I hope my advice will help you solve your task.
I have a list of names in cells C5:C14. For each name there is data that goes till Column G. I want the name to turn Green indicating all the data is done for that name.
Example:
C5 says Jane Doe. I want C5 to turn green if D5:G5 all individually contain "Yes."
Thanks in advance.
Hello!
Use the conditional formatting formula:
=AND(C5="Jane Doe",SUM(--(D5:G5="Yes"))=4)
Hope this is what you need.
Hi there,
I have a spreadsheet with 2 columns which contain start dates, and each row is a different contract. Column A I've used a vlookup to pull the date from a different worksheet. Column B has just the date in the cell (ie no formula). I've changed the cell type to be 'short date' on both columns.
I would like to use conditional formatting to highlight when these dates are not the same as each other on each row.
I've tried using conditional formatting - new rule - formula : =$A1=$B1 but it highlights all of the cells, I think this is because it is comparing the formula in column A to the value in column B and saying it is different, even if the date value in column A and B are the same.
I also tried using a formula =IF(EXACT(A2,B2),"Match","Mismatch") but again it pulls everything as a mismatch, I think because it's reading the formula rather than the value.
Is it possible to use conditional formatting based on the cell value rather than cell formula?
Thank you very much in advance for any advice you can give
Hello!
If you want to highlight cells where dates don't match, use the formula
=$A1<>$B1
Please note that dates do not include time as well. It doesn't matter what format they are in.
Hello,
I am trying to highlight a row if a column (J) says finished. I used =$J2=Finished and changed the formating to standard green. For some reason this doesn't work. Why?
Hello!
We have a special tutorial on this. Please see - How to change the row color based on a cell's value in Excel.
Hello,
I am hoping someone can help me ... I have been looking for hours on how to solve this issue but cannot find the answer. I have tried using the examples given but I still cannot get the conditional formatting to work.
My spreadsheet has column A with an issue date and column B with a contractual date. The contractual date is 35 days out in the future from the issue date. I want the contractual date cell to turn blue when the contractual date is (issue date +30) and stay blue until date 35 when I would like it to change to red.
eg. Issue date is Jan 1/22 (Column A) and the contractual date is Feb 4/22 (Column B). I would like Column B to turn blue on Jan 31st and stay blue until Feb 4th and then turn red from Feb 4th going forward. I hope that makes sense. I have tried what I think should work but it turns the cell red right away. Not sure what to do to get this spreadsheet looking like I want to. I am hoping you can give me direction. Thank you
Hello!
Create two conditional formatting rules with the desired colors for these conditions
=((B1-A1) > 29)*((B1-A1) < 35)
=(B1-A1) > 34
This should solve your task.
Hello,
I'm trying to set 3 scale colors to highlight how much money from the budget has been spent until now.
I want cell K2 to change color (K2 is corresponding to the remaining balance).
I want it to be based on the percentage or percentile of cell D3 (D3 is corresponding to the total assigned amount of money for the year).
I want the color change to be divided into:
- Green, when remaining amount is between 100% - 66%
- Yellow, when remaining amount is between 65% - 33%
- Red, when remaining amount is between 32% - 0%
I do not find the correct way to add D3 as base reference amount cell.
Thank you in advance!!
C.
Hello!
Here is the article that may be helpful to you: Excel conditional formatting Icon Sets, Data Bars and Color Scales.
I hope I answered your question. If something is still unclear, please feel free to ask.
Hello,
I am trying to format the cells of a column based on different words that the cells might contain.
The following rule works great:
Format only cells that contain>Specific text>Containing>="text1"
But if i try to add multiple text strings, then it does not highlight anything. I used the following condition:
=OR("text1";"text2).
Note that a cell can either contain "text1" or "text2" but not both.
Hello!
You can create two rules. There is a separate rule for each word. For multiple conditions, also use a conditional formatting formula. For instance,
=OR(A1="text1",A1="text2")
Read the second paragraph in the article above.
Hello,
Are you able to assist with a google sheets conditional formatting question?
If so: my spreadsheet has column B, which contains the driver names for the market I am working in, and column C, which contains the starting location numbers for each driver. I would like to apply formatting to column B to change the color for the driver based on the value in column C for that driver. I have tried several formulas and they aren't working for me. Some of the formulas I've tried are C2="5859" or $C2="5859" or C$2="5859". Applied to range B1:B1032.
Hi!
I recommend reading this guide: Google Sheets conditional formatting based on another cell.
Hello,
I'm trying to have a conditional format that hides certain cells if a specific word is in another cell, Now the rule works for 4 of the 5 words but the word Supervisor is doesn't like, However, If I use a drop-down list even fewer words will allow the format but if I then type the same word over the top of that dropdown list word it works. I am very confused.
The formula I am using is =$C4="Supervisor" This would then block out C4 and U4, the word is then changed to Store Manager, Barista Etc.
Any ideas?
Many Thanks
Martin
Hi!
I am not sure I fully understand what you mean. Conditional formatting cannot hide cells or change their content. Are you using a filter to hide some values? What is the dropdown used for? Explain your problem more precisely.
Question, I want to see if its possible to do something,
Im doing a mileage spreadsheet for my bussiness, I want to know if this is possible. If the driver wrote that its L ( loaded) I want to add those mileages at the end of the document, and if its E (empty) then add it in another box. like weekly he is typing the mileage and then it just add up the ones that are L in a box and the ones that says E in another.
Hello,
As I understand your task, you must find the amount by condition. Use the SUMIF function for this.
Hi, compliments of the season to you, and thank you for your help in advance. My apologies if you've answered this elsewhere,
I have a reference cell with a number value that is the average ( =AVERAGE(X:Y) ) of the same cells I wish to apply conditional formatting to. The conditional formatting rules I am trying to apply to the cells are;
Format only cells with: Cell Value | less than | =reference cell
Format only cells with: Cell Value | greater than or equal to | =reference cell
The result I am trying to achieve is for cells with a value 'less than' the reference cell to fill with light green, and those 'greater than or equal to' fill with a light red. Some cells fill correctly, some don't. Those that don't fill correctly are the other (wrong) colour, or have no colour at all.
All cells (including the reference cell) are formatted as numbers with no decimal places. All numbers in the data cells are whole numbers. If I click on any of the data cells, the number displays in the formula bar correctly. If I check the rules for any of the cells that are filled incorrectly, both rules are correct. I would love to get this working properly as it will reveal some very interesting information.
Many thanks in advance for your help,
Paul.
Hi!
The information you provided is not enough to understand your case and give you any advice. I can’t guess what values you have painted incorrectly, what values are written in these cells and what exact formula is used.
Hi, I have a workbook where I keep record of our orders. I want to put in a conditional format to check if column F & G is empty and make Column C Red Bold. I have tried the following formulas
=OR(ISBLANK($F2),ISBLANK($G2))
=OR($F2=0),$G2=0))
=OR(if($F2=0,1),($G2=0,1))
I also used the and in front as well as changed the 0 to "", and I did your troubleshooting but the problem remain. Some calculate correctly i.e. if either cell F or G has information in it does not change the format, and some if both is empty it change the format. But for most of these it does not do the conditional formatting correctly. I have - for the empty cells - gone and select them and pressed delete as well to ensure there is nothing in the cells.
Hello!
Unfortunately, I was unable to reproduce your error in my workbook. Try this formula:
=OR($F2="",$G2="")
I hope it’ll be helpful.
Hello, Hope you are all well. I need help in what formula to use in conditional formatting. I would like that a cell will display an N/A value if the word/text in another cell is Enrolled. I use the =IF($G6="Enrolled","N/A"). The formula works in a cell but if I apply it as a formula in the conditional formatting it does not work. Kindly help. Thank you very much.
Hello!
Unfortunately, conditional formatting can change the format of a cell, but it cannot change the value in a cell. Your task can be accomplished with a VBA macro.