Results 1 to 3 of 3

auto entering date and time

Threaded View

  1. #3
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,295

    Re: auto entering date and time

    Hi Lloyd,

    Find the attached with this code behind sheet1, that does what I think you want.
    Private Sub Worksheet_Change(ByVal Target As Range)
        If UCase(Target.Text) = "Y" Then
            If Not Intersect(Columns("B"), Target) Is Nothing Then
                Cells(Target.Row, "C") = Date
                Cells(Target.Row, "D") = Time
            End If
            
            If Not Intersect(Columns("E"), Target) Is Nothing Then
                Cells(Target.Row, "F") = Date
                Cells(Target.Row, "G") = Time
            End If
            
            If Not Intersect(Columns("H"), Target) Is Nothing Then
                Cells(Target.Row, "I") = Date
                Cells(Target.Row, "J") = Time
            End If
    
        End If
    End Sub
    Attached Files Attached Files
    One test is worth a thousand opinions.
    Click the * Add Reputation below to say thanks.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. cell auto-lock after entering time
    By VanHardy in forum Excel General
    Replies: 5
    Last Post: 09-17-2013, 07:05 PM
  2. Auto Sort, Auto Lock, Auto Date & Time Stamp
    By suehatesyou in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-23-2010, 02:57 PM
  3. question about entering date and time
    By changetires in forum Excel General
    Replies: 3
    Last Post: 07-18-2006, 09:38 AM
  4. [SOLVED] Entering current date and time
    By PrologPro in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 09-16-2005, 09:05 AM
  5. auto dating after entering the first date
    By Jomo Watts in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 04-05-2005, 11:06 AM

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