SELECTING CURRENT DATE AT OPENING

R

R VAN DEURSEN

I have a worksheet with the dates of a month, say 1jan,
2jan, 3jan etc. Is there a way that excel by opening the
workbook selects automaticely the current date.
 
B

Bob Phillips

Private Sub Workbook_Open()
Worksheets(Format(Date, "dmmm")).Activate
End Sub

in the ThisWorkbook code module.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
G

Guest

Thank you,

this one is usable to, what i mean is, selecting
automaticely a cell with the current date
 
P

Peter Rooney

How about this, assuming that you give the name "SearchDates" (for example)
to the range of cells containing your dates.

Sub FindCurrentDateCell()

Dim SearchCell As Object

For Each SearchCell In Range("SearchDates")
If SearchCell.Value = Date Then
SearchCell.Select
Exit Sub
End If
Next SearchCell
End Sub

Hope this helps

Pete



Sub FindCurrentDateCell()

Dim SearchCell As Object

For Each SearchCell In Range("SearchDates")
If SearchCell.Value = Date Then
SearchCell.Select
Exit Sub
End If
Next SearchCell
End Sub
 
P

Peter Rooney

Sorry, I forgot you wanted to run it whenever the workbook opened!

Paste this code into the code window of your "ThisWorkbook" in the Visual
Basic Editor. make sure you don't change the procedure name, otherwise it
won't work.

Private Sub Workbook_Open()

Dim SearchCell As Object

For Each SearchCell In Range("SearchDates")
If SearchCell.Value = Date Then
SearchCell.Select
Exit Sub
End If
Next SearchCell
End Sub

In this way, the code will run whenever you open the workbook. I'm sure you
know, but you can also have similar macros called:
Private Sub Workbook_Close() which runs when the workbook closes, or

Private Sub Worksheet_Activate() or
Private Sub Worksheet_Deactivate()

in the code windows of your worksheets to run when a worksheet is activated
or deactivated.

Hope this helps

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top