Still no go.
Is this line O.K?
SearchOrder:=xlByRows
Still no go.
Is this line O.K?
SearchOrder:=xlByRows
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 !!!
Not yet,
I must be doing something wrong. How do I get it to select the column with today's date?
Argh,
I was selecting the cell and you want the column
Try
VBA Noob![]()
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
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
No problem
Thanks for the feedback
VBA Noob
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks