Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
All,
How do I, in VBA, conditional format a column based on another columns data? For example I have dates in the column (DATE COLUMN) I need formatting, however I have text in another column (TEXT COLUMN). I want to make the date columns format dependant on the text column. Here's what I have thus far: s_current = Format(DateSerial(Year(Date), Month(Date), 1), "yyyy-mm") s_future = Format(DateSerial(Year(Date), Month(Date) + 2, 1), "yyyy-mm") Range("R:R").Select 'THIS IS DATE COLUMN Selection.FormatConditions.Add Type:=xlCellValue, Operator:=xlBetween, _ Formula1:=s_current, Formula2:=s_future Selection.FormatConditions.Add Type:=xlCellValue, Operator:=xlEqual, _ Formula1:= TEXT COLUMN DATA <<< ---- NEED HELP HERE, I THINK Selection.FormatConditions(2).Interior.ColorIndex = 7 I have two conditions in which I need to color code the DATE COLUMN: 1.) in between s_current & s_future 2.) if the value of the corresponding cell in TEXT COLUMN is "IN" Any help would be much appreciated. Thanks, -m |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conditional formatting--different formatting depending on cell con | Excel Discussion (Misc queries) | |||
Formatting Conditional Formatting Icon Sets | Excel Discussion (Misc queries) | |||
Protect Cell Formatting including Conditional Formatting | Excel Discussion (Misc queries) | |||
conditional Formatting based on cell formatting | Excel Worksheet Functions | |||
Conditional Formatting that will display conditional data | Excel Worksheet Functions |