Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
Max Max is offline
external usenet poster
 
Posts: 390
Default Highlight active cell

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default Highlight active cell

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   Report Post  
Posted to microsoft.public.excel.programming
Max Max is offline
external usenet poster
 
Posts: 390
Default Highlight active cell

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Highlight active cell

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   Report Post  
Posted to microsoft.public.excel.programming
Max Max is offline
external usenet poster
 
Posts: 390
Default Highlight active cell

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Highlight active cell

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Row select mode to highlight active row of active cell Bart Fay[_2_] Excel Discussion (Misc queries) 0 May 11th 10 09:34 PM
Active Cell Highlight Bill_17256 Excel Discussion (Misc queries) 6 April 24th 09 11:00 PM
Active cell highlight E Excel Discussion (Misc queries) 21 February 15th 08 09:40 PM
Highlight active cell and de-highlight previous cell dmbuso Excel Programming 3 April 7th 07 04:22 PM
Highlight Active Cell Db1712 Excel Discussion (Misc queries) 1 November 26th 04 01:14 PM


All times are GMT +1. The time now is 05:07 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"