+ Reply to Thread
Results 1 to 2 of 2

Submit date on cell change vba

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    02-12-2018
    Location
    Clearwater, FL
    MS-Off Ver
    MS 365
    Posts
    217

    Submit date on cell change vba

    I have a sheet called "Control" wherein cells I12:I13 where it shows who the next person is for the Sup line. In cells M12, I would like to put the date that it is completed for & on cell change for it copy the date over to sheet "Escalation Rotation" in column B beside that person's name. Just for the 1st blank cell so their name is back in rotation when it comes up again. Any help would be greatly appricated & I have attached an example for your reference.
    Attached Files Attached Files

  2. #2
    Forum Guru xladept's Avatar
    Join Date
    04-14-2012
    Location
    Pasadena, California
    MS-Off Ver
    Excel 2003,2010
    Posts
    12,378

    Re: Submit date on cell change vba

    Put this code in your Control Sheet module - it does only what you specified:

    Option Explicit
    
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Address = "$M$12" And IsDate(Target) Then
    Dim wr As Worksheet, F As Range, PName As String
    Set wr = Sheets("Escalation Rotation"): PName = Target.Offset(0, -4)
    Set F = wr.Range("A:A").Find(PName, Lookat:=xlWhole)
                If Not F Is Nothing Then
            If F.Offset(0, 1) = "" Then
                F.Offset(0, 1) = Date
            Else: Do
            Set F = wr.Range("A:A").FindNext(F)
            Loop While Not F Is Nothing And F.Offset(0, 1) <> ""
    End If:
    F.Offset(0, 1) = Target: End If: End If: End Sub
    Last edited by xladept; 02-18-2018 at 04:02 PM.
    If I've helped you, please consider adding to my reputation - just click on the liitle star at the left.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~(Pride has no aftertaste.)

    You can't do one thing. XLAdept

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~aka Orrin

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. If range value change, active cell equal date and time of change.
    By kmakjop in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-31-2015, 02:43 PM
  2. Replies: 2
    Last Post: 04-23-2014, 09:07 AM
  3. Change the content of a cell based on change the current date
    By aimanraya in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 04-14-2014, 07:07 AM
  4. How to Find days between Submit Date by Manager
    By brlattim in forum Excel General
    Replies: 1
    Last Post: 10-30-2013, 10:41 AM
  5. Replies: 0
    Last Post: 09-27-2012, 01:11 AM
  6. Replies: 1
    Last Post: 02-05-2012, 09:31 PM
  7. Create a Submit button save filename as A1, submit email unc path, etc.
    By briant97 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 12-30-2009, 09:52 AM

Tags for this Thread

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