+ Reply to Thread
Results 1 to 1 of 1

Date and Time stap for Part In & Part Out

Hybrid View

  1. #1
    Registered User
    Join Date
    05-11-2012
    Location
    AZ, USA
    MS-Off Ver
    Excel 2010
    Posts
    4

    Date and Time stap for Part In & Part Out

    Hi,

    I'm trying to track down a way to write a code to enter date/Time [NOW()] when a part is scanned in and out. I however want to place the time in within column C and time out within column D. This would mean:

    'Active column is B
    'When Part A gets scanned into B3, a Date/Time in is captured in C3.
    'When Part A gets scanned out, it looks up (Vlookup maybe?) a duplicate of the part number (B3) and places a Date/Time out in D3
    'After that, active cell moves to E3, for operator to enter a 1 or 2 value (for a Pass (1)/Fail (2) criteria for scratches.
    'When Part B gets scanned in, and looks up a duplicate in Column B and if none found, would place the part number in B4 with a Date/Captured in C4.


    This is as far as I've gone:


    Private Sub Worksheet_Change(ByVal Target As Range)

    Dim sInputE As String

    If Target.Cells.Count > 1 Then Exit Sub

    If Target.Column = 2 Then
    Application.EnableEvents = False
    '* Set Date/Time value in column C
    With Target.Offset(, 1)
    .Value = Now
    .EntireColumn.AutoFit
    End With


    Do While sInputE = ""
    sInputE = InputBox("Scratch Failure" & vbCrLf & "(1 for Pass, 2 for Fail)", "Input Data")
    If sInputE <> "" Then
    If MsgBox("Please confirm " & sInputE & " is correct.", vbYesNo) = vbYes Then
    Target.Offset(0, 3) = sInputE
    Else
    sInputE = ""
    End If
    End If
    Loop

    Target.Offset(1).Select
    Application.EnableEvents = True
    End If

    End Sub


    Please help! Thanks a mil!!!
    Last edited by crystal2000a; 05-25-2012 at 10:45 AM.

+ 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