Macro to find Like and paste values

AFANPQ

New Member
Joined
Apr 25, 2019
Messages
13
Hello,

This is my first post. I am fairly new to VBA and this has me in over my head. I have scoured the internet to try and find the answer for my issue. I am trying to write a script to reference column "S" by row ("S2", "S3", "S4" to the end of the list) and find Like values in Ranges "D2:D500", "F2:F500", and "M2:M500". If matches are found I'd like to paste all of the matches into column "A".

Example:
A ............ D F ........ M.............. S
Lettuce, Onions Mayo Pickles Onions Lettuce, Onions Mayo Pickles Burger w/ Pickles Pickles
Burger w/ Pickles

I'm not sure if I'm making total sense. Please ask if you need clarity!
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Just to be clear, are you looking for stand alone values (Not embedded with other text) in columns D, F and M, or will the searched text be embedded with other text in the same cell?
Assuming the are stand alone values, try this:
Code:
Sub t()
Dim rng As Range, fn As Range, c As Range
Set rng = Union(Range("D2:D500"), Range("F2:G500"), Range("M2:M500"))
    For Each c In Range("S2", Cells(Rows.Count, "S").End(xlUp))
        Set fn = rng.Find(c.Value, , xlValues, xlWhole)
            If Not fn Is Nothing Then
                Cells(Rows.Count, 1).End(xlUp)(2) = fn.Value
            End If
    Next
End Sub
 
Upvote 0
Good question! Thank you for asking. It will be embedded within other text.

Then we can try this modification to the other code and see if it yields the results you want. If not, then we can go another route which will take longer to run.

Code:
Sub t()
Dim rng As Range, fn As Range, c As Range
Set rng = Union(Range("D2:D500"), Range("F2:G500"), Range("M2:M500"))
    For Each c In Range("S2", Cells(Rows.Count, "S").End(xlUp))
        Set fn = rng.Find(c.Value, , xlValues, xlPart)
            If Not fn Is Nothing Then
                Cells(Rows.Count, 1).End(xlUp)(2) = fn.Value
            End If
    Next
End Sub
 
Last edited:
Upvote 0
My greatest apologies, JLGWhiz. I have realized I wasn't fully explicit with what the code should accomplish.
The code should look for related values from Column S within the aforementioned columns and return the corresponding row values from Column D to Column A in the form of a list within each cell.
 
Upvote 0
Funny enough, I had already made this change. I am like a foreigner in a country that speaks the native tongue in a broken fashion when it comes to VBA
 
Upvote 0
This would be much easier if I could see the worksheet. I think I am shooting in the dark. See if this give what you need.

Code:
Sub t()
Dim rng As Range, fn As Range, c As Range, r As Range
Set rng = Union(Range("D2:D500"), Range("F2:G500"), Range("M2:M500"))
    For Each c In Range("S2", Cells(Rows.Count, "S").End(xlUp))
        For Each r In rng
            If InStr(r.Value, c.Value) > 0 Then
                Cells(Rows.Count, 1).End(xlUp)(2) = Cells(r.Row, "D").Value
            End If
        Next
    Next
End Sub
 
Upvote 0
I'd say that sharing the ws would be highly helpful. I had a couple interns write these macros to find project relationships by listing those beside each project in question. It is a huge load of code. I am attempting to rewrite most of it to accomplish easier break/fix and to augment the code to do more. Below is a bit of a visual and some explanation.
"A"
Potential Relationships
"D"
Project Name
"F" "M"
<strike></strike>
"S"

Search Criteria(Column "S")
Project Surfing<strike></strike>
Project Skydive
Project Fun<strike></strike>
These columns include applications/software/hardware and proj. description <strike></strike>
Project Alpha
Project Beta
Sunset
Project Alpha
Project Beta<strike></strike>
<strike></strike>
Project Fun<strike></strike>
<strike></strike>
Project Surfing<strike></strike><strike></strike>
<strike></strike>
Project Skydive <strike></strike>
<strike></strike>
Sunset

<tbody>
</tbody>
 
Upvote 0
It looks like you would only want to search columns F and M and then return the corresponding value from column D. So in my suggested code you would take column D out of the Union range to get the appropriate results.

Code:
Sub t()
Dim rng As Range, fn As Range, c As Range, r As Range
Set rng = Union(Range("F2:G500"), Range("M2:M500"))
    For Each c In Range("S2", Cells(Rows.Count, "S").End(xlUp))
        For Each r In rng
            If InStr(r.Value, c.Value) > 0 Then
                Cells(Rows.Count, 1).End(xlUp)(2) = Cells(r.Row, "D").Value
            End If
        Next
    Next
End Sub

I am assuming that the column S values would also appear in the columns F and M values.
 
Last edited:
Upvote 0
This code is working. But it's not listing every match within the corresponding cells. I'm sure it's my fault for not giving the best detail and examples.
I'm not sure how I can express exactly what I'm looking for but I'll give it a go...

Column "S" holds the search criteria.... I need the code to search the aforementioned columns to find the partial value of "S2". Let's say the value is found in 3 different rows (7, 13 and 27). The projects identified in Column "D" for each of these rows would be listed within Cells "A7", "A13" and "A27". However, "A7" would not be on the list in row 7 column A because it is the return value on that row and doesn't need to be listed in the same row.

After the "S2" search completes the code would continue "S3", "S4" to the end of Column S

Column A Column D

Row 7 Project13 Project7
Project27


I hate to be a pain. Thank you for giving this a try!
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,485
Members
448,967
Latest member
visheshkotha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top