Closed Thread
Results 1 to 14 of 14

Go to today's date column

Hybrid View

  1. #1
    Registered User
    Join Date
    04-04-2004
    Posts
    42
    Still no go.
    Is this line O.K?
    SearchOrder:=xlByRows

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Did the example work

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Registered User
    Join Date
    04-04-2004
    Posts
    42
    Not yet,
    I must be doing something wrong. How do I get it to select the column with today's date?

  4. #4
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Argh,

    I was selecting the cell and you want the column

    Try

    Private Sub Worksheet_Activate()
    Dim Dt As Date
        
        Dt = Date
        Rows("1:1").Select
        Range("A1").Activate
    
        Selection.Find(What:=Dt, After:=ActiveCell, LookIn:=xlFormulas _
        , LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
        MatchCase:=False).Select
        With ActiveCell
         .EntireColumn.Select
        End With
    End Sub
    VBA Noob

  5. #5
    Registered User
    Join Date
    04-04-2004
    Posts
    42

    O.K. Thanks, it works

    Great,
    It's working. Thanks so much for the help.
    I'm leaving now but will play with it some more tomorrow.
    Appreciate the help...this stuff is fun.
    Bobby

  6. #6
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    No problem

    Thanks for the feedback

    VBA Noob

Closed 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