Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have this code (below) given to me by Per Jessen that marks today's date.
Now I need the date highlighted. Any help please? Thanks a lot. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Stealth code. Neat!
"MAX" wrote: I have this code (below) given to me by Per Jessen that marks today's date. Now I need the date highlighted. Any help please? Thanks a lot. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sorry I didn't understand what that means. Will you please Explain more easier?
Thanks "JLGWhiz" wrote: Stealth code. Neat! "MAX" wrote: I have this code (below) given to me by Per Jessen that marks today's date. Now I need the date highlighted. Any help please? Thanks a lot. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It means you did not post the code. <g
"MAX" wrote in message ... Sorry I didn't understand what that means. Will you please Explain more easier? Thanks "JLGWhiz" wrote: Stealth code. Neat! "MAX" wrote: I have this code (below) given to me by Per Jessen that marks today's date. Now I need the date highlighted. Any help please? Thanks a lot. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sorry,
Private Sub Workbook_Open() c = Month(Date) r = Day(Date) Sheets("Sheet1").Range("A1").Offset(r, c).Activate End Sub "JLGWhiz" wrote: It means you did not post the code. <g "MAX" wrote in message ... Sorry I didn't understand what that means. Will you please Explain more easier? Thanks "JLGWhiz" wrote: Stealth code. Neat! "MAX" wrote: I have this code (below) given to me by Per Jessen that marks today's date. Now I need the date highlighted. Any help please? Thanks a lot. |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I assumed you wanted it to be yellow for a highlight. That color will
remain there unless you delete it manually with FormatCellsPatternNo Color OK Private Sub Workbook_Open() c = Month(Date) r = Day(Date) Sheets("Sheet1").Range("A1").Offset(r, c).Activate ActiveCell.Interior.ColorIndex = 6 End Sub "MAX" wrote in message ... Sorry, Private Sub Workbook_Open() c = Month(Date) r = Day(Date) Sheets("Sheet1").Range("A1").Offset(r, c).Activate End Sub "JLGWhiz" wrote: It means you did not post the code. <g "MAX" wrote in message ... Sorry I didn't understand what that means. Will you please Explain more easier? Thanks "JLGWhiz" wrote: Stealth code. Neat! "MAX" wrote: I have this code (below) given to me by Per Jessen that marks today's date. Now I need the date highlighted. Any help please? Thanks a lot. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Row select mode to highlight active row of active cell | Excel Discussion (Misc queries) | |||
Active Cell Highlight | Excel Discussion (Misc queries) | |||
Active cell highlight | Excel Discussion (Misc queries) | |||
Highlight active cell and de-highlight previous cell | Excel Programming | |||
Highlight Active Cell | Excel Discussion (Misc queries) |