Results 1 to 10 of 10

Thread: Find All Empty Blank Cells Or KeyWord In A Column

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Administrator Excel Fox's Avatar
    Join Date
    Mar 2011
    Posts
    1,401
    Rep Power
    10
    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

  2. #2
    Administrator Excel Fox's Avatar
    Join Date
    Mar 2011
    Posts
    1,401
    Rep Power
    10
    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

Similar Threads

  1. Delete Entire Row For All Empty Cells In Column
    By johnreid7477 in forum Excel Help
    Replies: 4
    Last Post: 06-15-2013, 05:50 AM
  2. Replies: 13
    Last Post: 06-10-2013, 09:05 AM
  3. Find keyword using multiple Text box and combox value
    By Ryan_Bernal in forum Excel Help
    Replies: 2
    Last Post: 03-07-2013, 06:11 PM
  4. Replies: 2
    Last Post: 09-24-2012, 11:19 PM
  5. Highlighting Blank Cells
    By Howardc in forum Excel Help
    Replies: 2
    Last Post: 08-13-2012, 07:56 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •