+ Reply to Thread
Results 1 to 5 of 5

Time macro

Hybrid View

  1. #1
    Registered User
    Join Date
    04-01-2008
    Posts
    54

    Time macro

    Hi I need a help to create a macro to calculate start time and end time

    If I enter any value in Cell A1, B1 should populate time and If I enter value in C1,D1 should populate end time

    Only challenge what I am facing is If I type something in Cell A1, B1 populates the time but if i delete the content in A1 It should delete the time in B1

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Time macro

    Hello kamalthakur,

    Please post any VBA code or formulas you have. It will make it easier to propose a useful solution.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Registered User
    Join Date
    04-01-2008
    Posts
    54

    Re: Time macro

    Private Sub Worksheet_Change(ByVal Target As Range)
            If Target.Columns.Column = Columns("a").Column _
            Or _
           Target.Columns.Column = Columns("c").Column Then
           Target.Offset(, 1).Value = Now()
        End If
    End Sub.
    Last edited by Leith Ross; 10-28-2010 at 10:45 AM. Reason: Fixed Code Tags

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Time macro

    Hello kamalthakur,

    Here is the working macro code.
    Private Sub Worksheet_Change(ByVal Target As Range)
    
        If Target.Cells.Count > 1 Or Target.Column > 2 Then Exit Sub
        
          Application.EnableEvents = False
            Select Case Target.Column
              Case 1
                If Target.Value = "" Then
                   Target.Offset(0, 1).Value = ""
                Else
                   Target.Offset(0, 1).Value = Now()
                End If
              Case 2
                If Target.Value = "" Then
                   Target.Offset(0, -1).Value = ""
                Else
                   Target.Offset(0, -1).Value = Now()
                End If
            End Select
          Application.EnableEvents = True
        
    End Sub

  5. #5
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Time macro

    If I've understood:

    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim rngI As Range, rngC As Range
        On Error GoTo ExitPoint
        Application.EnableEvents = False
        Set rngI = Intersect(Target, Union(Columns(1), Columns(3)))
        If Not rngI Is Nothing Then
            For Each rngC In rngI.Cells
                rngC.Offset(, 1).Value = IIf(rngC.Value = "", "", Now)
            Next rngC
        End If
    ExitPoint:
        Set rngI = Nothing
        Application.EnableEvents = True
    End Sub

+ 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