Results 1 to 5 of 5

Thread: Clear cell after Worksheet_Change Analysis

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Clear cell after Worksheet_Change Analysis

    Hello all. This is my first post and I hate to be asking for help on my first post. I've found bits and pieces of info that I'm looking for but I don't know how to put it all together to make it work.

    I am using Excel 2007.

    What I am trying to accomplish is as follows:

    Cell A1 will be used to scan barcode data into (this data is a serial number scanned off of a box using a barcode). The barcode scanner utilizes "Enter" and a line feed after the scan is complete, as I need to use this configuration for other aspects of my job.

    When the data is entered into cell A1, it compares itself to data located in column "f," which are known serial numbers that I should have on-hand. It, then color codes the background of the cell in column "f" where the appropriate serial number is located.

    Now what I need to happen, and I can't figure out, is to have the cursor go back to A1, clear the existing data, then wait for the new barcode scan data to arrive in order to process the new serial number information, compare it, and highlight it in column "f".

    This will repeat until I have run out of serial numbers to scan. If all works well, after scanning all of my boxes, all of the entries in column F should be highlighted.

    I am using this for inventory purposes to compare known data to scanned data.

    The following code only gets me so far as comparing and highlighting the data and keeping my cursor in cell A1. What I can't figure out is how to clear the data in A1 in order to accept the new data being scanned in next. Any help would be most appreciated. Thank you in advance.

    Private Sub Worksheet_Change(ByVal Target As Range)
     Sheets(1).Select
     ActiveSheet.Range("A1").Select
     If Target.Address = "$A$1" Then
       With Columns("F")
         Set c = .Find(Target)
           If Not c Is Nothing Then
             Range(c.Address).Interior.ColorIndex = 6
           Else
             MsgBox "Value Not Found"
           End If
       End With
     End If
    End Sub
    Last edited by macropod; 09-24-2017 at 07:48 PM. Reason: Added code tags & gave thread a meaningful title

Posting Permissions

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