indi visual
Member
Quite simply, I would like to sort and filter names and dates (in specified colors given the specified dates).
What has taken me four days to figure out will likely take someone in this forum seconds.
I am very new to all of this, and I come modestly, respectfully, and appreciative for any help.
I have a few questions, but they are all connected, and with a few short answers I can have my entire sheet functioning beautifully.
Conditional formatting is the most simple way to do this. However, I have a =ColorFunction sub that conditional formatting would interfere with (because it is my understanding the “=ColorFunction” does not recognize colors highlighted conditionally (or with private subs either). For this reason, I have thrown together an alternative sub macro that creates the same result that my colorfunction formula could recognize.
[pre]Sub Highlight_Date_Today_Red()<br />
'searches finds and highlights today date in range in a specified color without the use of standard conditional formatting<br />
' Highlight_Date_Today_Red Macro</p>
<p>Range("E4:E1000"
.Select<br />
Application.FindFormat.Clear<br />
'On Error Resume Next<br />
Cells.Find(What:=DateValue(Today), After:=ActiveCell, LookIn:=xlFormulas, _<br />
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _<br />
MatchCase:=False).Activate</p>
<p> With Selection.Interior<br />
.Pattern = xlSolid<br />
.PatternColorIndex = xlAutomatic<br />
.Color = 255<br />
.TintAndShade = 0<br />
.PatternTintAndShade = 0<br />
End With<br />
End Sub
It worked but it only highlighted one cell. Sad for me, and yes it is okay to laugh at my code (but at least give me credit for attempting this Frankenstein monstrosity) Lol
Here are my four questions:
How do I get it to search and highlight the current date today throughout the entire column accordingly?
As for multiple values, how would I get it to highlight yesterday’s date in another the color the same way accordingly?
Next, how would I write this same code with something along the lines of:
[pre]If Range(“H4”) contains “/”, then highlight cell (“E4”) in this color?[/pre]
Finally,
If Range(“H4”) contains no fill color, then highlight cell (“E4”) in this color?[/pre]
Any help on this would be super extremely appreciated you have no idea. I tried so many variations from so many forums for so long that it’s time I sought help from someone. Anyone who can help me this will have a speedy response from me guaranteed. I will be monitoring any responses round the clock. Thanks in advance.
Quick note: I did make sure the dates I attempted to find and highlight were formatted as “date cells” and not “text cells”.
What has taken me four days to figure out will likely take someone in this forum seconds.
I am very new to all of this, and I come modestly, respectfully, and appreciative for any help.
I have a few questions, but they are all connected, and with a few short answers I can have my entire sheet functioning beautifully.
Conditional formatting is the most simple way to do this. However, I have a =ColorFunction sub that conditional formatting would interfere with (because it is my understanding the “=ColorFunction” does not recognize colors highlighted conditionally (or with private subs either). For this reason, I have thrown together an alternative sub macro that creates the same result that my colorfunction formula could recognize.
[pre]Sub Highlight_Date_Today_Red()<br />
'searches finds and highlights today date in range in a specified color without the use of standard conditional formatting<br />
' Highlight_Date_Today_Red Macro</p>
<p>Range("E4:E1000"
Application.FindFormat.Clear<br />
'On Error Resume Next<br />
Cells.Find(What:=DateValue(Today), After:=ActiveCell, LookIn:=xlFormulas, _<br />
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _<br />
MatchCase:=False).Activate</p>
<p> With Selection.Interior<br />
.Pattern = xlSolid<br />
.PatternColorIndex = xlAutomatic<br />
.Color = 255<br />
.TintAndShade = 0<br />
.PatternTintAndShade = 0<br />
End With<br />
End Sub
It worked but it only highlighted one cell. Sad for me, and yes it is okay to laugh at my code (but at least give me credit for attempting this Frankenstein monstrosity) Lol
Here are my four questions:
How do I get it to search and highlight the current date today throughout the entire column accordingly?
As for multiple values, how would I get it to highlight yesterday’s date in another the color the same way accordingly?
Next, how would I write this same code with something along the lines of:
[pre]If Range(“H4”) contains “/”, then highlight cell (“E4”) in this color?[/pre]
Finally,
If Range(“H4”) contains no fill color, then highlight cell (“E4”) in this color?[/pre]
Any help on this would be super extremely appreciated you have no idea. I tried so many variations from so many forums for so long that it’s time I sought help from someone. Anyone who can help me this will have a speedy response from me guaranteed. I will be monitoring any responses round the clock. Thanks in advance.
Quick note: I did make sure the dates I attempted to find and highlight were formatted as “date cells” and not “text cells”.