+ Reply to Thread
Results 1 to 8 of 8

Auto date & time...

  1. #1
    Mike
    Guest

    Auto date & time...

    I have an excel file that I add data to everyday & would like to know how I
    can have 2 cells automatically fill in the date & time.
    Thanks-



  2. #2
    0-0 Wai Wai ^-^
    Guest

    Re: Auto date & time...



    > I have an excel file that I add data to everyday & would like to know how I
    > can have 2 cells automatically fill in the date & time.
    > Thanks-
    >


    Do you mean you have 2 cells which need to display today's date & time.
    If so, copy this forumla in your cells:
    =NOW()

    If not, what date & time do you refer to?
    Hope the above helps.



  3. #3
    Bob Phillips
    Guest

    Re: Auto date & time...

    This updates the fields M1, N1 for any change in A1:H10

    Private Sub Worksheet_Change(ByVal Target As Range)
    Const WS_RANGE As String = "A1:H10"

    On Error GoTo ws_exit:
    Application.EnableEvents = False
    If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
    .Range("M1").Value = Format(Date, "dd mmm yyyy")
    .Range ("N1"), Value = Format(Now, "hh:mm:ss")
    End If

    ws_exit:
    Application.EnableEvents = True
    End Sub

    'This is worksheet event code, which means that it needs to be
    'placed in the appropriate worksheet code module, not a standard
    'code module. To do this, right-click on the sheet tab, select
    'the View Code option from the menu, and paste the code in.




    --

    HTH

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


    "Mike" <[email protected]> wrote in message
    news:[email protected]...
    > I have an excel file that I add data to everyday & would like to know how

    I
    > can have 2 cells automatically fill in the date & time.
    > Thanks-
    >
    >




  4. #4
    Bob Phillips
    Guest

    Re: Auto date & time...

    Sorry typos

    Private Sub Worksheet_Change(ByVal Target As Range)
    Const WS_RANGE As String = "A1:H10"

    On Error GoTo ws_exit:
    Application.EnableEvents = False
    If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
    Target.Range("M1").Value = Format(Date, "dd mmm yyyy")
    Target.Range("N1").Value = Format(Now, "hh:mm:ss")
    End If

    ws_exit:
    Application.EnableEvents = True
    End Sub

    'This is worksheet event code, which means that it needs to be
    'placed in the appropriate worksheet code module, not a standard
    'code module. To do this, right-click on the sheet tab, select
    'the View Code option from the menu, and paste the code in.



    --

    HTH

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


    "Bob Phillips" <[email protected]> wrote in message
    news:[email protected]...
    > This updates the fields M1, N1 for any change in A1:H10
    >
    > Private Sub Worksheet_Change(ByVal Target As Range)
    > Const WS_RANGE As String = "A1:H10"
    >
    > On Error GoTo ws_exit:
    > Application.EnableEvents = False
    > If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
    > .Range("M1").Value = Format(Date, "dd mmm yyyy")
    > .Range ("N1"), Value = Format(Now, "hh:mm:ss")
    > End If
    >
    > ws_exit:
    > Application.EnableEvents = True
    > End Sub
    >
    > 'This is worksheet event code, which means that it needs to be
    > 'placed in the appropriate worksheet code module, not a standard
    > 'code module. To do this, right-click on the sheet tab, select
    > 'the View Code option from the menu, and paste the code in.
    >
    >
    >
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "Mike" <[email protected]> wrote in message
    > news:[email protected]...
    > > I have an excel file that I add data to everyday & would like to know

    how
    > I
    > > can have 2 cells automatically fill in the date & time.
    > > Thanks-
    > >
    > >

    >
    >




  5. #5

    Re: Auto date & time...

    keep your DATA in a DATABASE and uninstall Excel

    that's what i'd reccomend


  6. #6
    Bob Phillips
    Guest

    Re: Auto date & time...


    <[email protected]> wrote in message
    news:[email protected]...
    > keep your DATA in a DATABASE and uninstall Excel
    >
    > that's what i'd reccomend
    >


    .... and nobody cares



  7. #7
    Dodo
    Guest

    Re: Auto date & time...

    "Bob Phillips" <[email protected]> wrote in news:
    #[email protected]:

    > <[email protected]> wrote in message
    > news:[email protected]...
    >> keep your DATA in a DATABASE and uninstall Excel
    >>
    >> that's what i'd reccomend
    >>

    >
    > ... and nobody cares
    >


    Did that idiot come alive again or are you just responding to some old
    message? ;-)))


    --

    It is I, DeauDeau
    (Free after monsieur Leclerc in 'Allo, 'allo)

  8. #8
    Bob Phillips
    Guest

    Re: Auto date & time...

    I think he has some auto-spam generator that randomly selects messages and
    pumps out some meaningless drivel which he fires when he boss shouts at him
    :-0

    Bob


    "Dodo" <[email protected]> wrote in message
    news:[email protected]...
    > "Bob Phillips" <[email protected]> wrote in news:
    > #[email protected]:
    >
    > > <[email protected]> wrote in message
    > > news:[email protected]...
    > >> keep your DATA in a DATABASE and uninstall Excel
    > >>
    > >> that's what i'd reccomend
    > >>

    > >
    > > ... and nobody cares
    > >

    >
    > Did that idiot come alive again or are you just responding to some old
    > message? ;-)))
    >
    >
    > --
    >
    > It is I, DeauDeau
    > (Free after monsieur Leclerc in 'Allo, 'allo)




+ 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