+ Reply to Thread
Results 1 to 4 of 4

current Date and time in cell

  1. #1
    Registered User
    Join Date
    08-15-2005
    Location
    UK
    Posts
    38

    current Date and time in cell

    Further to my last post http://www.excelforum.com/showthread...ight=show+time
    Is it possible to show current date and time when sheet is opened please?

    thanks in advance

    alex

  2. #2
    Dave Peterson
    Guest

    Re: current Date and time in cell

    =now()
    format as date and time.

    This will update whenever excel recalculates.

    Alex01 wrote:
    >
    > Further to my last post
    > http://www.excelforum.com/showthread...ight=show+time
    > Is it possible to show current date and time when sheet is opened
    > please?
    >
    > thanks in advance
    >
    > alex
    >
    > --
    > Alex01
    > ------------------------------------------------------------------------
    > Alex01's Profile: http://www.excelforum.com/member.php...o&userid=26311
    > View this thread: http://www.excelforum.com/showthread...hreadid=516280


    --

    Dave Peterson

  3. #3
    Gary''s Student
    Guest

    RE: current Date and time in cell

    Put the folowing macro in This Workbook code:


    Private Sub Workbook_Open()
    Sheets("Sheet1").Activate
    Cells(1, 1).Formula = "=NOW()"
    Cells(1, 1).Value = Cells(1, 1).Value
    End Sub

    Everytime you open the workbook, cell A1 in Sheet1 will be time/date marked.
    --
    Gary''s Student


    "Alex01" wrote:

    >
    > Further to my last post
    > http://www.excelforum.com/showthread...ight=show+time
    > Is it possible to show current date and time when sheet is opened
    > please?
    >
    > thanks in advance
    >
    > alex
    >
    >
    > --
    > Alex01
    > ------------------------------------------------------------------------
    > Alex01's Profile: http://www.excelforum.com/member.php...o&userid=26311
    > View this thread: http://www.excelforum.com/showthread...hreadid=516280
    >
    >


  4. #4
    Registered User
    Join Date
    08-15-2005
    Location
    UK
    Posts
    38
    many thanks for your valued advice.

    alex

+ 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