Direct reference

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello all,
We are making timesheets for every person to fill in. At present every
person needs to goto the cell containing today's Date and start populating
against it.

What I require is that when the excel sheet is opened it should directly
point to the cell containing today's date. and the person does not need to
scroll up / down.
 
Hi Archana,

Following should do the job ...
to be added in the worksheet module ...

Private Sub Worksheet_Activate()
Cells.Find(What:="today()", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext,
_
MatchCase:=False).Activate
End Sub

HTH
Cheers
Carim
 

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

Back
Top