Results 1 to 2 of 2

VB FIND works properly for First Split in Array, but not Subsequent Splits

Threaded View

karimifarzan VB FIND works properly for... 03-15-2013, 04:10 PM
xlbiznes Re: VB FIND works properly... 03-15-2013, 05:54 PM
  1. #1
    Registered User
    Join Date
    03-11-2013
    Location
    Washington DC
    MS-Off Ver
    Excel 2007
    Posts
    3

    VB FIND works properly for First Split in Array, but not Subsequent Splits

    All,

    I have a VB Script that is functioning properly but has two minor issues that I can't seem to fix.

    Script Purpose: The script compares two worksheets. It uses comma separated entries in the 'CTP' sheet and attempts to find a corresponding match (via the Split and Find commands) in the 'SRTM' sheet. If a match is found, it copies the corresponding entry from Column A of the 'CTP' sheet to Column B of the 'SRTM' sheet.

    Issue #1: It copies only the first split for each cell properly. It does not work for any of the subsequent splits in the For Loop, even though each split (array element) has a valid value and should be findable in the spreadsheet.

    Issue #2: There are some cases where multiple matches occur and the script needs to be able to append a value to the cell rather than overwrite the value. This issue is with the following line: Sheets("SRTM").Cells(c4.Row, 2) = c3.Offset(, -1)

    The script that needs to be reworked is below. The sample worksheets are attached as well.

    Thanks in advance.

    Sub copyfrom1()
    
        Dim c3 As Range, c4 As Range, LR2 As String, ms As Worksheet, LR1 As String, x
        
        Application.ScreenUpdating = 0
        Application.EnableEvents = 0
        
    With Sheets("CTP")
    
        LR2 = Worksheets("CTP").Cells(Rows.Count, 1).End(xlUp).Row
        LR1 = Worksheets("SRTM").Cells(Rows.Count, 1).End(xlUp).Row
         
     For Each c3 In .Range("B2:B" & LR2)
        
        If Len(c3.Value) Then
        
          x = Split(c3.Value, ",")
          
           For i = 0 To UBound(x)
        
            Set c4 = Sheets("SRTM").Range("A2:A" & LR1).Find(x(i), , xlValues, xlPart)
        
             If Not c4 Is Nothing Then
    
                Sheets("SRTM").Cells(c4.Row, 2) = c3.Offset(, -1)
             End If
          Next
       End If
     Next
    End With
    Application.ScreenUpdating = 1
    Application.EnableEvents = 1
    
    End Sub
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

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