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 3. Total comments: 1074
Hello! I am working on a workbook with 2 relevant sheets. I would like a cell to be formatted to a specific color depending on its membership to a specific table. The formula returns True properly and Fase properly, but I am unable to use the formula within the rule formula field.
Sheet 1 (only the first column is relevant)
----------
Role Name
Permission Name 1
Permission Name 2
Sheet 2 (T_Permissions definition; only the first column is relevant)
----------
[ Permission Name ]
Permission Name 1
Permission Name 2
FORMULA:
=(IFERROR(IF(VLOOKUP(A3, T_Permissions[Permission Name], 1, FALSE)=A3, TRUE, FALSE), FALSE))
VLOOKUP finds A3 (Permission Name 1) within T_Permissions[Permission Name] and returns the permission name if found. False tag is set so i can filter the tables.
If this returned permission name equals the initially referenced cell's value, return True. Else return False.
If there was an error through this process, False should be returned
If input in an individual cell, the output is TRUE when appropriate and FALSE when appropriate.
When input to the conditional formatting rule, I receive the error "There is a problem with this formula" and recommends putting quotes to signify that it is not a formula.
I have also tried to input the following as a rule:
=OR(=IFERROR(IF(VLOOKUP(A3, T_Permissions[Permission Name], 1, FALSE)=A3, TRUE, FALSE), FALSE))
and
=False() OR (IFERROR(IF(VLOOKUP(A3, T_Permissions[Permission Name], 1, FALSE)=A3, TRUE, FALSE), FALSE))
and
=IFERROR(IF(VLOOKUP(A3, T_Permissions[Permission Name], 1, 0)=A3, 1, 0), 0)
(this one will return 1 and 0 appropriately)
Do you have any ideas? I'm new to excel (but not programming) and am frequently having to visit this site and the excel formula list,
Hi! Do not use structured references in conditional formatting formulas. Use normal cell range references.
To clarify:
VLOOKUP references A3 from Sheet 1 (A1 is blank, A3# is a list of permissions associated with the role of A2)
and
=OR(=IFERROR(IF(VLOOKUP(A3, T_Permissions[Permission Name], 1, FALSE)=A3, TRUE, FALSE), FALSE))
should be
=OR(IFERROR(IF(VLOOKUP(A3, T_Permissions[Permission Name], 1, FALSE)=A3, TRUE, FALSE), FALSE))
all of these alternatives returned the same error
I have a rule in column A and I copied a line of information from a different spreadsheet and pasted to the spreadsheet with the rule. Now the rule will not apply to the newly added information in column A.
Hi! When copying and pasting from another table, you copy not only the values, but also the format. Therefore, conditional formatting will not be applied to this data. Use Paste Values.
I am trying to format a running balance for fund tracking. I would like to use the 3-color scale to do so. For values =12001 AND <=3500). Whichever way the midpoint color scale works is fine with me, I just want to have the gradient effect as the values get lower and lower. Lastly once the remaining balance reaches a value of <12,000 I want those cells to be red. This way I can track when our remaining fund balance is getting low the color is a warning sign to either slow payments, or halt them altogether. I hope this makes sense. The numbers I will play around with a bit to see exactly what values I want in the formula bars, but I just can't get the conditional formatting to take to my range of column data. (Excel says I cannot use relative references which has me confused on whether or not the absolute references will always resort back to the FIRST cell's value or will it carry through the column.
The running balance is a calculated column form some other columns nearby, and starts at the top value of 60,000. I want the scale to then change based on those above criteria. So as I progress throughout the year and spend funds down, the column I am trying to format is a calculated value based on the previous balance minus the new payment made. Does that affect my conditional formatting rules at all being a calculated cell? I would not think it would, but just brainstorming my own logic.
I am trying to do the conditional formatting using formulas, since I want to highlight cells that meet certain thresholds as warnings to myself about getting close to running out of funds. Would appreciate any and all guidance please.
Hi! If I understand correctly, you must use Color Scale formatting for each individual cell. Set the Format Cells based on their values - Format Style - 3-Color Scale. Read more: Change background color in Excel based on cell value.
Hi,
Highlighted Rows filtered and display in the same sheet but deferent cell
Eg.
whatever highlighted in A to F should be filtered and display in J to O cell
thnx
Hi! Excel formulas can't see which rows you've highlighted. You can select a range of rows and work with it using a VBA macro.
I have an excel with two cells. Each cell has a dropdown menu. The first cell has a 'Yes/No' choice, the second cell has five choices, but only ONE of those five is relevant to the 'Yes' choice of the first cell. Can a formula be written so that if 'Yes' is selected in the first cell, the second cell automatically fills in the only relevant choice in the second cell?
For example:
Cell 1: Yes/no - I select 'Yes'
Cell 2: Choices 1-5 - it automatically selects choice 1, the only one that is relevant to 'Yes'
ALTERNATELY
Cell 1: Yes/no - I select 'No'
Cell 2: Choices 1-5 - I select relevant choice from dropdown menu
Any assistance would be appreciated.
Hi! If you want the second drop-down list to depend on the first drop-down list, use these guidelines: How to make a dependent (cascading) drop-down list in Excel.
Can you help me about this subject?
I need a formal If the date is old or identical to today's date
, the message "Check must be performed" will appear, and if the date is in the future or equal to today's date, the same date will appear
Hi! You can see the answer to your question here: Excel IF statement with dates.
I have a colum with Reserved time| Pick up time| time Difference.
i need to determine if the bus is early, on-time, or delayed (within the +/-30minute window how do I do a formula that selects early, on-time or delayed base on the +/-30 minute condition.
Hi! If you have more than one condition, use a nested IF function, or IFS function.
For example,
=IF(C2>30, "delayed", IF(C2<-30, "early", "on-time"))
=IFS(C2>30, "delayed", C2<-30, "early",AND(C2>-30,C2<30), "on-time")
I have a small database consisting of numbers from 10 to 20 that are scattered in the range(B3:F9 FOR EXAMPLE)
Now, I want to format the top 3 numbers , so I used the TOP/BOTTOM RULES command, but what it is, it formats 5 numbers!!! for me, all of which are 20!!!WHATS WRONG?!!!!!!! While I expected numbers 19 and 18 to be highlighted
Hi! If I understand your task correctly, try the following conditional formatting formula:
=B3>=LARGE($B$3:$C$9,3)
For more information, please visit: Excel LARGE function to get n-th highest value
I am trying to use the same formula for multiple lines, example: =$H$5=$G$5 APPLIES TO =$A$5:$H$5. I want it to continue down each row and keeping the column references the same but changing the row reference. Is there an easy way to do this without writing the formula every time? (NEXT ROW WOULD BE =$H$6=$G$6 APPLIES TO =$A$6:$H$6
Hi! Here is the article that may be helpful to you: How to copy formula in Excel with or without changing references.
I have an excel sheet with columns label years, 2000 , 2001, 2002, 2003 all the way to 2015 with lets say high temperature values. Going down the rows are days 1 , 2, 3 ect... so now I want to find the highest temperature across they years. So now lets say I found that it is 33.5C in over 15yrs (Using the MAx function) ... i now would want to find in which year that temperature value occurred ... example 33.5C occurred in 2010... But I would want that to be displayed in a column on its own.. can that be done?
Hi! This INDEX MATCH formula returns the value from the first row of the column that contains the maximum number.
=INDEX(A1:E1,MIN(IF(A2:E100=MAX(A2:E100),COLUMN(A2:E100))))
hi dear
im using this formula =IF(AE4=""؛AD4؛AE4)
when there isnt formula inside those cells(ad4 nd ae4) it work perfect but when I use formula inside those cells it dont work .(im using xlookup for gathering data for these cells)
I want to use value of ae4 if its not empty other wise if its empty or blank or ziro i want to choice ad4 data
plz help me
Hi! If I understand correctly, you are trying to write this formula in cells AE4 and AD4. This creates circular references because the formula cannot reference itself. Choose a non-empty value inside the XLOOKUP formula.
Hello, I work for a company that has approximately 400 agents.
I am looking to create an Excel spreadsheet that can verify when an agent has gone past a certain time frame (when replying to a guest by email), and if possible, conditional formatting the time between receiving the email and responding to it.
The idea is to verify if the agents are replying on time and to check, as a quality assurance department, how often this happens during the month.
However, I am not sure how to create a formula for email threads that are in, for instance, outlook.
Hi! Try to use the recommendations described in this article: How to conditionally format dates and time in Excel with formulas and inbuilt rules. I hope it’ll be helpful.
I want to put a formula on an entire column without having to put that formula in a cell and dragging it down as I go.
I want to put the invoice amount in column A and have column B automatically put the amount without tax (5%). I tried highlighting column B and making a new rule with conditional formatting using a formula of =SUM($A1/1.05). If I put $105 in the cell in column A I want column B to autofill the adjacent cell with $100 (the amount without tax).
Right now nothing at all is coming up in column B when I put an amount in column A.
What am I doing wrong? How do I apply a formula to an entire column with out dragging it down as I go?
Thanks!
Hi! If I understand your task correctly, the following tutorial should help: How to copy formula in Excel with or without changing references.
Hello,
I have the following formula to format cells in column E. Idea is that they are coloured red when the values in column D and E met the conditions as stated in the formula (both textual values):
=AND($D3="Noodzakelijk";$E3="Niet gestart")
I also tried many other ways, including:
=AND($D3="Noodzakelijk",$E3="Niet gestart")
but Excel doesn't recognise this as a formula because of the komma.
Any idea how to solve this?
Rows 1 and 2 contain headers btw.
Pls I want to apply 3 different colour codes to an entire column based on their values but referencing from another particular cell. Using conditional formatting, it is getting only colour from the first cell of that column
When you create a conditional formatting rule, apply it to the entire range, not just one cell. Read more: Excel Conditional Formatting tutorial with examples.
Hi! Your conditional formatting formula works if you apply conditional formatting to a range of cells starting on row 3. For example, D3:E100
Hope you can help....believe this is simple but still scratching my head.
Trying to format a column of cells based on another cell text value. For example; If B10="Higher" conditional format cells in range B15:B25 and highlight the cell (single) that has the highest numeric value in that range. And if B10="Lower", conditional format the cells in range B15:B25 and highlight the cell that has the lowest numeric value. Note; the range my contain more than one higher or lower cells and i would want them to format also.
thanks
-Mxc
Hi!
To do conditional formatting on two conditions, use the logical AND function. For the range B15:B25, apply this conditional formatting formula:
=AND($B$10="Higher",B15=MAX($B$15:$B$25))
I also recommend taking a look at this article: Relative and absolute cell references in Excel conditional formatting.
Hi there
I really hope you can help ... I'm trying to use conditional formatting to change text colour based on comparing the values in two columns. There are four rules I'll need to apply using different formulas for each:
FORECAST - NOT BOOKED: if the value in column C is higher than zero, and the value in column D is zero then make the text colour blue
FORECAST - UNDERBOOKED: if the value in column C is higher than zero, and the value in column D is less than the value in column C then make the text colour purple
FORECAST - OVERBOOKED: if the value in column C is higher than zero, and the value in column D is more than the value in column C then make the text colour red
NOT FORECAST - BOOKED: if the value in column C is zero, and the value in column D is higher than zero then make the text colour orange
Fingers and everything crossed you can help. Thank you so very much in advance!!
Best regards
Lynne
Hi! I hope you have studied the recommendations in the tutorial above. It contains answers to all your questions. Use the AND function to test both conditions. For example,
=AND(C1>0,D1=0)
Yeah, that's the formula I was using but I'd selected the actual row number i.e. C4 rather than C1 and it wasn't working. I've now changed it to C1 and it works!!
Thank you for your advice and clarity!!
Kind regards
Lynne
Hello,
I am trying to highlight column J values for the following condition:
If all cells on C1:I1 are blank highlight J1.
However, I want this applied to the whole table not just one row. Ex If C2:I2 cells are blank highlight J2.
Is there a way to do this through conditional formatting?
Hello!
Select the range of cells J1:J100 and use the conditional formatting formula
=PRODUCT(--ISBLANK(C1:I1))=1
For more information, please visit: Relative and absolute cell references in Excel conditional formatting.
Thank you so much!!! It worked!
Hi!
I have a two part question that may go beyond conditional formatting capabilities, but though I might give it a shot. Essentially, I am using Excel to track training records for our company. We have 25 documents we train to, each with a different revision (they are periodically updated). Every person has the date and the revision of each document input into this spreadsheet. I was able to get the revision column to conditionally format properly (highlighting red) by comparing their latest trained revision to the latest revision released through the formula "=D4D$3", where D4 (and D5, D6, etc.) is the employees latest training and D3 is the revision of the latest released version of the document. This formula will be repeated 25 times, hence the non-absolute values except for row 3. My questions are:
1. Next to these revision columns, I have the date the employees completed the training. Can I format these columns to highlight red based on the revision comparison? For example, in column C, I have the date of training for the document noted above (in column D). I made a formula the following formula to highlight cells red: "=D4D$3". However, nothing happens with this formula. Can you condition one cell based on comparison of values (in this case text) in two different cells?
2. The first column is the person names. Not super necessary, but it would be nice if I could highlight the person's name based on the outcome of the formatting in the subsequent columns as described in the first paragraph above. Essentially, at a quick glance I'd like to be able to look at a person's name, and know they are missing updated training to one of the documents. Not sure how I would make the formula, but maybe an IF statement with a bunch of ORs comparing the employee's revision to latest revision (as seen in row 3 as mentioned in the first paragraph above). Is this a possibility?
Let me know if there's anything I need to clarify in the query above.
Thanks,
Hi!
If I understood correctly, select the range C4:C29 and apply the conditional formatting rule =D4<>$D$3 to it.
I hope this will help.
Hello,
When I try to write the following conditional formatting with "Use a formula to determine which cells to format" I always get that standard warning message "There's a problem with this formula. Not trying to type a formula? ....."
=AND(G11=6,M11=1800)
I want to format M11 cell with green color by above conditional formatting.
Hi!
Check your regional settings and list separator.
Hi Alexander Trifuntov,
I want one entire row to show from among the drop downs based on the values entered in another cell.
I have drop downs 1. Below 100, 2. 100-110, Now I want an entire column cells to display the above result based on the values entered in another cell.
( ex. I have drops downs in H column with the above mentioned criteria, now I want these to come up automatically based on the values entered in Column G) If 89 is entered in Column G then Column H must show Below 100.
Kindly help, I would be highly obliged.
Hi! Unfortunately, you can only show one of the two drop-down lists by condition with a VBA macro.
Hello, I have a conditional formatting formula set in my data in which specific cells highlight in red based on input of another cell in another column, the formula is =$AB3"". I want the red highlight to be removed once data is entered in the cells. I think the isblank formula can be used in this case but I cant seem to find the way. Would anyone please advise? Thank you very much
Hi!
To check if a cell is not empty, you can use this formula:
=NOT(ISBLANK($AB3))
Hope this is what you need.
I am hoping you can help me! I have googled and even asked a friend that is good with excel but still can't get an answer. I have a pivotable that I am Conditional Formatting with "Highlight is equal to 0" and the second conditional formatting is fill in with black if it is Blank. I put both of these in and one worked and the other wouldn't save. I went to manage formatting rules and only one was there so I used the "New Rule" from that screen and when I clicked "OK" to go back to manage formatting rules screen from formatting screen, the rule disappears. I can't seem to get it to stay long enough to hit "Apply". This has happened before and now it is happening. I have noticed both times, I was only formatting 2 columns of the pivot table.
Also, I tried to format the top cell and copy it down and it will only use one of the rules and not both. The second disappears.
So my question is there a way to trick the system into keeping both rules? When I do other sheets that have 4 columns formatted it does fine.
Thanks for any insight!
Hi!
I can't see how you create a conditional formatting rule for the pivot table. Perhaps this article will be helpful: How to make a heat map in Excel PivotTable.
Hello,
I have three columns (G, H, & I) with drop down selection of 1-4. I want the cell in column J to be grey unless any of the cells in column G, H, or I are less than 2 but not blank. (i.e if column G & I are blank, and H is 3 or 4 column J is greyed out, but if H is 2 or 1, J is not greyed out.) Could you help me on this?
Hi!
If multiple conditions must be true at the same time, use the logical AND function.
Try this formula:
=AND((G1:I1>2),NOT(ISBLANK(G1:I1)))
That worked, THANKS!
Hello!
I have a table with list of Price of Chemicals by Month.
Some prices on particular month cells have been highlighted in Light Yellow.
I would like to know if can use Conditional Formatting to identify those cells highlighted in Light Yellow.
I managed to get a link and tried but it does not work, do you have a better one, please.
"This can be accomplished with a user-defined function. First, create the function to identify the fill color of the cell:
Function IdentifyColor(CellToTest As range)
'Returns R + (256 * G) + (65536 * B)
'IdentifyColor = 255 for red, 65280 for green, etc.
IdentifyColor = CellToTest.Interior.Color
End Function
Then create a conditional format formula for cell A5 based on this formula: =IdentifyColor(B5)=65280
It may be easier to use HEX2DEC to specify colors. Therefore, the formula would become: =IdentifyColor(B5)=HEX2DEC("00FF00")"
Hello!
In the article How to sum and count cells by color in Excel, you can find the VBA code for a custom functions GetCellColor and GetFontColor that return a color code. You may also find other functions and examples in this article useful.
How do I apply conditional formatting to show me if data in a cell is not in a specific format e.g. Time column should be in the Time format 13:30
Hi!
Unfortunately, Excel formulas cannot determine which date and time format applies.
Hi. I'm trying to apply a conditional format on a column based on another column's text; yes to the whole column. I saw that in that case you could use $B:$B (for example) for setting that column that you will use as reference. My conditional format looks like this:
Style: Classic
Use a formula to determine which cells to format
=$B:$B="Pago Tarjeta Credito Cash Rewards"
Format with: Custom Format. AaBbCcYyZz (text in red, no fill)
Applies to: $A:$A
Although I don't get any error notifications, I just can make it work. I already tried your way, checking first if I have headers or something in the first row that could interfere with the formula and based on that I changed the formula to (My data has headers and some notes on the first two rows):
Style: Classic
Use a formula to determine which cells to format
=$B3="Pago Tarjeta Credito Cash Rewards"
Format with: Custom Format. AaBbCcYyZz (text in red, no fill)
Applies to: $A:$A
But it still doesn't work...Can you try to tell me what I'm doing wrong?
Thanks.
Hi!
If you apply conditional formatting to an entire column, use a reference to the cell in the first row in the formula. For example:
=$B1="Pago Tarjeta Credito Cash Rewards"
I hope this will help.
How can I conditionally format a dependent drop down list level 2 when drop down list level 1 is selected that has values in level 2? I want for the level 2 dropdown cell to change background color when I've selected a value in level 1 dropdown, alerting me that there are further values to select.
Hi! You can conditionally format any cell whether or not it has a drop-down list. Conditional formatting uses the value of the cell.
I'm looking to have conditional formatting that looks for duplicates between a set of cells on one sheet and the set of cells on another sheet, both sheets are in the same workbook. I already know how to pull data from one sheet to another but would like to format the data pulled to look for duplicate from a set of cells on the same sheet it is pulling data from.
For example I have a sheet that pulls a drivers name from a specific cell using formula:
='DAY PLAN'!H10
but I would like to have it where if the driver is also working a PM shift listed in another sheet I would like the name to show up with the conditional formatting. I have tried using "Format only unique or duplicate values" Rule is set to Format all duplicate values in the selected range. I want the applies to formula to be:
=$D$11:$F$21:='DAY PLAN'!$R$2:$S$32
but when I hit apply, it changes to:
=$D$11:$F$21
I have also tried to enter it with these formulas with no luck:
=$D$11:$F$21:'DAY PLAN'!$R$2:$S$32
-or-
='195'!$D$11:$F$21:='DAY PLAN'!$R$2:$S$32
-or-
='195'!$D$11:$F$21:'DAY PLAN'!$R$2:$S$32
-or-
='DAY PLAN'!$R$2:$S$32:='195'!$D$11:$F$21
-or-
='DAY PLAN'!$R$2:$S$32:'195'!$D$11:$F$21
Thanks in advance!
Hello!
Perhaps this tutorial will be helpful to you: How to highlight duplicate cells and rows in Excel.
However, we have a solution that will solve your problem in a couple of clicks. I recommend the Compare tables tool, which helps you find duplicates and unique values in any two data sets: tables, columns, or lists.
It is available as a part of our Ultimate Suite for Excel that you can install in a trial mode and check how it works for free.
Thanks, got it figured out
I have setup rules format the fill in cell B4 based on values of K4 and L4 and want to quickly copy that to the lower rows so "B" cell references the corresponding "K" and "L" cells. I tried to format paint but it kept everything referencing K4 and L4.
Hi!
Select the entire conditional formatting range and apply the rule. I also recommend that you read this: Relative and absolute cell references in Excel conditional formatting.
Thank you for your amazing blog and excel knowledge. The answer may already be in here but I'm still struggling. I am trying to hightlight cells where the employee made less than $1000.00 but not if there is a "s/f " in the comments section or "not available" in hte4 comments section or alternatively it can be if the word "ok" is in the comment section. So less than $1000.00 and have been "ok'd" by management:
TOTAL GROSS PAY OVER/UNDER FLEET MGR COMMENTS
1,112.51 112.51 Kevin
749.44 -250.56 Kevin ok
963.38 -36.62 Corey ok
1,027.34 27.34 Corey
884.58 115.42 Corey ok
825.84 -174.16 Corey ok
854.60 -145.40 Corey not available
997.32 -2.68 Corey S/F 84319
Hi!
If I understand your task correctly, use logical AND function:
=AND(A2<1000,D2<>"s/f",D2<>"not available",D2="ok")
Hope this is what you need.
I hope you can help me, I am having trouble getting the formula correct.
I want to use conditional formatting to change the color of the cell if for example cell J61 is todays date and J61 contains the text investigation. Can you please help me get the formula correct? I tried the below formula but it does not work
=AND($J61=TODAY(), $L61="Lab Assessment – Phase I Investigation")
Hello!
Use SEARCH and ISNUMBER functions to search for partial text matches.
=AND($J61=TODAY(),ISNUMBER(SEARCH("Investigation",$L61)))
Hope this is what you need.
Is it Possible to do this in tandem with a color scale formatting? For example, I'd like to use a color scale based on the values in column A, but I'd like to highlight the entire row based on those values. The one way I can see is by manually making a color scale saying if the value in A is 1 use dark grey, if 2 use a lighter grey, if 3 an even lighter gray, etc... But that's one rule for each possible value in column A. Anyway to do it in maybe two formatting conditions?
Hi!
Perhaps this guide will be helpful to you: Color scales in Excel: how to add, use and customize.
Unfortunately I've tried that forum and haven't had luck. Do you know if there's a way to set the formatting of one cell equal to the formatting of another? Or at least the coloring?
Hi!
All standard tools for copying cell format are described in this article: Excel Format Painter and other ways to copy formatting. For everything else, you need to use VBA.
Hello Team,
I am using Excel 2010. I want to know if it is possible to highlight multiple columns (same row) if cell values in sequential order (e.g numbers 1, 2, 3, 4 and so on. The numbers follow an increasing pattern (1, 2, 3…).
Sample
2 11 12 13 14 15 29 33 48 55
8 9 10 17 26 27 28 32 43 50
5 9 18 24 30 31 32 42 54 58
Need outcome result (in Highlight as following)
11 12 13 14 15
8 9 10 26 27 28
30 31 32
I have tried following conditional formatting formula (outcome : this formula only Highlight certain values)
=A1+1=B1
Please assist me with the correct conditional formatting formula? Thank you!
Hello!
Please try the following conditional formatting formula:
=(A1=OFFSET(A1,0,-1)+1)+(A1=OFFSET(A1,0,1)-1)
You can learn more about OFFSET function in Excel in this article on our blog.
Hello Alex,
Thank you so much for the reply!
The formula worked like a charm.
OFFSET function was awesome.
Thank you for making such informative website!
I am using the graded 3-color scale with percentages, 0 50, and 100. For some reason, the color will not change when entering a percentage. This is a long running spreadsheet, and it always worked in the past. I copy the cells to a new cell, as I always have done but I can't see why now it isn't working. In this example, the cell location is $M$505. The formatting is the same for the previous cells, but it won't work.
Hi!
When you copy a cell, its formatting is copied too. You can remove the conditional formatting where you copy the values.
Hi! I'm using Conditional Formatting to highlight ranges of cells using different colors based on age range, for example I want to highlight cells between 6months,0days to 8months,31days red; 9months,0days to 11months,31days orange, and 12months,0days to 14months,31days yellow; etc.
In doing so, a couple issues are presenting:
1. Not all cells within the age range are highlighting, and
2. Ages that fall in different ranges are highlighting in the incorrect color.
Will you be able to help me with this please? Thank you.
Hi!
I do not have your data so I cannot answer these questions. I think this guide will be helpful: Excel conditional formatting for dates & time: formulas and rules.
Hello, I have a spreadsheet with conditional formatting formulas that has been working well, but the last few sets of data I have built the formatting has stopped working correctly.
For example, one row of data I have the following =C23<=30 (highlights green), then =AND(C23=45) (highlights yellow), then =C23>45 (highlights red). Applies to cells =$C$23:$N$23
The green and red formatting is fine, but the cells that should be yellow are just white.
Appreciate any help, cheers
Hello! The logical AND function is used for several conditions. Try =C23=45 If the value in C23 is obtained using a formula, the result is probably a decimal number, for example 45.0005 Then use rounding.
First, your explanations and samples are fantastic. Very concise. Thank you.
I am having an issue using conditional formatting and cell contents vs cell results.
In cell E2, I have a formula referencing a cell in another worksheet. =Mandatory!C2 Result is "PASS". In cell F2, I have a different cell reference =Mandatory!F2 Result is also "PASS".
I would like to use conditional formatting to highlight both cells in E and F based on this true statement -- if E2 = F2 . My range is set to =$E$3:$F$100.
How do I reference the cell result of "PASS" and not the formula.
Thanks for your time.
Hello!
If I understand your task correctly, for the range $E$3:$F$100 use the conditional formatting condition E3=F3.
Hello!
I have data in cells C3 and D3, in C3 I have a Start Date and in D3 an End Date. Once I populate these two cells with dates another block of cells will format in Yellow in between these corresponding dates to show that there is provisional booking. This part works fine.
Now I want to add a date into cell F3, this is to confirm a booking, once this is populated I want the same block of cells to turn Green to show that the booking is confirmed.
At the moment I have this formula =AND($F3"", $P$2>=$C$3,$P$2<=$D$3), but it is highlighting everything in the row where I only want it to highlight the same specific dates.
Any ideas how I can do this?
To select only one cell and not a row, apply conditional formatting to the column. Also note the sequence in which you apply the rules by following these instructions: Apply multiple conditional formatting rules to same cells.
I hope it’ll be helpful. If something is still unclear, please feel free to ask.
Hi there,
is there a way to autofill text based on duplicates?
Let's say I have worksheet made like this:
Data 1: Data2:
A1 = car = B1 = vehicle
A2 = banana = B2 = food
A3 = B3
If A1 have a text with let's say "car" and then B1 have a text "vehicle" so when I copy paste "car" from other notebook to the cell A3 is it possible for B3 to automatically fill the row with "vehicle" text?
I often have to paste 10+ various IDs and sometimes they are duplicated for different Special IDs so I thought it would be nice if the value could be automatically filled with the same text for the same value if the other cell is already filled somewhere in the worksheet.
Hi!
Maybe this article will be helpful: How to use AutoFill in Excel - all fill handle options.
Hi I have a small problem with my Conditional Formatting.
So the formula itself works, the color changes to gray whenever any text I type manually contains letters SD (it's only example).
However it only works, whenever I type the text manually - let's say if I type SD12345 the text will turn gray.
If I copy and paste the text from notepad or somewhere else, it suddenly doesn't work.
However my other, normal formula (not CF) to autofill text in another cells, based on text with letters SD works perfectly fine.
So if B2 for example contains text SD12345, C2 will autofill text with text "Apple" for example. I wanted B2 to also turn gray however it doesn't work whenever I copy this text from other source and having 500+ values it's getting pretty time consuming to type everything.
I can't post a CF formula right now as it's on my work computer but I hope you get the idea.
Hi!
When you copy and paste, you are also copying the formatting of the cell from which you are pasting the value. This cell is excluded from conditional formatting rules. If you use Paste Special - Values then conditional formatting will work.
I am trying to create a formula for out of date training. So basically if someone has completed a training course within 2 years the cell remains green. If they completed the training over 2 years ago the cell turns red letting us know straight away that the person needs re-training asap.
Hi!
Here is the article that may be helpful to you: How to highlight dates within a date range. This should solve your task.
Hello
I am trying to create a condition, what I need is that from the first value 13 cells to the right be colored, how can I place that formula?
Please i need help
Hello!
To apply your conditional formatting, use this guide: How to change the row color based on a cell's value in Excel.
I want conditional formatting like if cell value is
Case-1: A1=16, B1=18 then
C1 should use formula A1*B1
Case-2: A1=16, B1= (BLANK) then
C1 should use formula A1*A1
How can I use two different formulas based on different cell values?
Hi!
To perform conditional calculations, you need to use the IF function instead of conditional formatting. The following tutorial should help: Nested IF in Excel – formula with multiple conditions.
Hi All,
I have this function:
="My Birthday ("&H14&")"
But it shows the value as My Salary (44927)
Can I change the formatting within the formula, so that I can get the number(44927) as actual Date i.e. January 1, 2023?
It'll be really helpful if you can help me out in this
Hi!
To concatenate a date with a text string, convert the date to text as described in this instruction: Convert date to text in Excel - TEXT function and no-formula ways.
team, thijs formala is retrning 00-jan-00 in the return value how to fix but the but the result from where teh data needs to be pulled is in 10/24/2022 fomat
=VLOOKUP(C5,'[Network Handover Tracker.xlsx]Network Handover Tracker'!$A:$I,9,1)
Hi!
Your formula returns 0. The cell with the formula is in date format.
I have been trying for days to find the answer to this:
Column A has employee names
Columns H-AZ have dates entered when training is completed.
When a training is required I have the cells highlighted in green (not all items H-AZ are required for each employee)
How can I highlight column A if there is a blank (green) cell in the rest of the worksheet?
I have only been able to make this formula work for Column H but not the rest of the cells.
Hi!
Try this conditional formatting formula:
=SUM(--ISBLANK(H1:L1))>0
I hope it’ll be helpful.
Hi, I need your help please with a formula. On my spreadsheet I have Column A that contains 503 employee names in alphabetical order each highlighted a certain color based on trainings they need to complete. Then Columns B through G has a dept name with employee names under it. I am trying to figure out a formula that will update the info in columns b though g based on the info in column a. I've tried searching but having a hard time coming up with the exact formula. PLease help because I have 503 names as of right now and they are adding more all the time.
Here's a better idea of what i'm needing:
Column A
John Smith (highlighted blue)
Jane Doe (highlighed yellow)
Bonnie Jones (hightlighted red)
Column B
Bonnie Jones
Column C
Jane Doe
Column D
John Smith
I want the info in columns b, c, and d to be hightlighted like info in column a.
Thanks,
MJ
Hello!
You can change the color of a cell based on the color of another cell using VBA.
Thanks! VBA is way out of my experience level.I'm just not getting comfortable using formulas. Thanks!
Hello - I have a conditional formatting question. I have 3 columns. I would like to highlight the cell in column I if the cell in column L is less than the cell in column N. What I have right now is:
Formula: ="$L4<$N4" and applies to $I:$I - What I have doesn't seem to be working. Any thoughts on what I'm missing?
Thanks!
Hi!
The conditional formatting formula must refer to the first row of the formatting range. In your case - on the first row, not on the fourth.
Hello!
I am trying to do condtional formatting formula that references two ranges and if one matches I want show it as an error for timetabling in a school.
Example if Teacher A is in Room 100 they can not be inputted into coverage as they are already assigned during this period.
The formula I was using was =iferror(indexA1:A5,MatchD3,B1:B5,0)),"Error")
When i do this in a cell it works however i would like to use condtional formatting as if i use the formula the cell can not be typed into.
Any help on this would be greatly appreciated.
Thanks.
M
Hello!
To highlight cells in the range D1:D5 that match values in the range B1:B5, use the conditional formatting formula:
=NOT(ISNA(MATCH(D1,$B$1:$B$5,0)))
Hope this is what you need.
Hello!
Can someone explain how do I set the formula based on column A, B, E and F for the cell to determine which color to choose? I tried VLOOKUP but it doesn't work.
Thank you.
Hello!
If I understand your task correctly, the following tutorial should help: How to Vlookup multiple criteria in Excel.
Try this formula:
=VLOOKUP(A1&" / "&B1,E1:F10,2,FALSE)