Yes, my bad. agree with Patel. Thought it used to be free. Please upload on a free site.
Yes, my bad. agree with Patel. Thought it used to be free. Please upload on a free site.
A dream is not something you see when you are asleep, but something you strive for when you are awake.
It's usually a bad idea to say that something can't be done.
The difference between dream and aim, is that one requires soundless sleep to see and the other requires sleepless efforts to achieve
Join us at Facebook
And for the worksheet change event in MISSED INSPECTION ITEMS, try this
Code:Private Sub Worksheet_Change(ByVal Target As Range) Dim lngLastRow As Long, rng As Range lngLastRow = Me.Cells(Rows.Count, 1).End(xlUp).Row Set rng = Me.Range("E7:E" & lngLastRow) If (Not Intersect(Target, rng) Is Nothing) And (Target.Cells.Count = 1) Then For Each c In Sheets("INITIATING DEVICES").Range("A2:A" & Sheets("INITIATING DEVICES").Cells(Rows.Count,1).End(xlUp).Row) If c.Value & c.Offset(, 1).Value & c.Offset(, 2).Value & c.Offset(, 3).Value = _ Me.Cells(Target.Row, 1).Value & Me.Cells(Target.Row, 2).Value & Me.Cells(Target.Row, 3).Value & Me.Cells(Target.Row, 4).Value Then c.Offset(, 4).Value = Target.Value Target.EntireRow.Delete Exit For End If Next End If End Sub
Last edited by Excel Fox; 06-23-2013 at 02:03 PM. Reason: Used last row for Sheets("INITIATING DEVICES")
A dream is not something you see when you are asleep, but something you strive for when you are awake.
It's usually a bad idea to say that something can't be done.
The difference between dream and aim, is that one requires soundless sleep to see and the other requires sleepless efforts to achieve
Join us at Facebook
Bookmarks