Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have a duties worksheet with an interupted list of dates in the 1st column
how do get excel to when opening automatically select or go to today`s cell day |
#2
![]() |
|||
|
|||
![]()
Hi sococr
Try this macro for column A Sub Find_Todays_Date() Dim FindString As Date Dim Rng As Range FindString = Date Set Rng = Range("A:A").Find(What:=FindString, _ After:=Range("A" & Rows.Count), _ LookIn:=xlFormulas, _ LookAt:=xlWhole, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False) If Not Rng Is Nothing Then Application.Goto Rng, True Else MsgBox "Nothing found" End If End Sub -- Regards Ron de Bruin http://www.rondebruin.nl "sococr" wrote in message ... I have a duties worksheet with an interupted list of dates in the 1st column how do get excel to when opening automatically select or go to today`s cell day |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conversion | Excel Worksheet Functions | |||
Create a cascading list box using Excel | Excel Discussion (Misc queries) | |||
Excel 97 Select Behavior | Excel Discussion (Misc queries) | |||
In Excel, why sort function fails when applied to a list of date? | Excel Discussion (Misc queries) | |||
Creating a Date Selector in Excel VBA? | Excel Discussion (Misc queries) |