+ Reply to Thread
Results 1 to 2 of 2

how to make excel select todays date from a list

  1. #1
    sococr
    Guest

    how to make excel select todays date from a list

    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. #2
    Ron de Bruin
    Guest

    Re: how to make excel select todays date from a list

    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" <[email protected]> wrote in message news:[email protected]...
    >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 to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1