Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a little function that sets the value of a cell depending on the date
relative to a couple of other dates and a "Yes"/"No" item: Function CurrentTaskStatus(Milestone As String, _ TaskEndDate As Date, MonthStart As Date, MonthEnd As Date, _ TaskProj As Integer, TaskComp As Single) If (TaskEndDate = MonthStart) And (TaskEndDate <= MonthEnd) And (Milestone = "Yes") Then CurrentTaskStatus = TaskComp Else CurrentTaskStatus = 0 End If End Function What I would like to do is set the color of the row in which the cell is located to a specific color based on the conditions. I have tried things like rows("A45:z45).interior.color = vbBlue with no success. Generally, a #VALUE! error appears in the cell when I try anything that might set the color. Am I trying to do the impossible? Or am I just way off course. Any suggestions will be greatly appreciated! Thanks! Don |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
custom function color | Excel Programming | |||
Migrating Custom color palette from 2003 to 2007 | Excel Discussion (Misc queries) | |||
Want to add help file for custom function but excel 2007 is flaked | Excel Worksheet Functions | |||
Need help w using custom image for custom toolbar in Excel 2007 | Excel Programming | |||
Powerpoint / Excel: custom pp RGB color doesn't match identical Excelcustom RGB color | Charts and Charting in Excel |