Using VBA or Formula to search multiple rows of data and return specified column values (must return all results and not first match)

SeanKC1989

New Member
Joined
Oct 9, 2018
Messages
13
Afternoon All,

I am having some trouble trying to find a formula or script that is able to search for a specified value in around 40 columns (some will be blank) and then if a match is found then to return the data from either one specific column or a group of columns.
This step must then be repeated and all results for the match given (not just the first or last).
There are 500 or so rows so the script or formula must be able to handle multiple rows and columns simultaneously.

For example I have a value on sheet 3, I would like to search all rows in sheet 1 for this value and each time there is a match return the values from column 46 in sheet 1. Is this possible?

Please help
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
It is certainly possible but it would help if we had more information. In which cell in Sheet3 is the value to match? Do you want to search the entire Sheet1 or only a particular column in Sheet1? Where on Sheet3 do you want to return the values from column 46?
 
Upvote 0
Hi Mumps and thanks for the reply,

The value is located in column A and is a list of values but I’m happy to run it with a single changeable value in sheet 3 or even in the same sheet if required.

I would like to search a specific range which, without looking at the sheet, is A4:AH448 (approximately) in sheet 1.

Oh and I really don’t mind where the data is returned, just that it is returned somewhere in sheet 3 other than column A :)

Thanks again for your help

Sean
 
Upvote 0
Try this macro. It will search for all values in column A of Sheet3 and return the value in column 46 of Sheet1 to the same row of the value in column A.

Code:
Sub ReturnVal()
    Application.ScreenUpdating = False
    Dim LastRow1 As Long, LastRow3 As Long, rng As Range, sAddr As String, Val As Range, lCol As Long, desWS As Worksheet, srcWS As Worksheet
    Set desWS = Sheets("Sheet3")
    Set scrWS = Sheets("Sheet1")
    LastRow1 = srcWS.Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    LastRow3 = desWS.Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    For Each rng In desWS.Range("A2:A" & LastRow3)
        Set Val = srcWS.Range("A4:AH" & LastRow1).Find(rng, LookIn:=xlValues, lookat:=xlWhole)
        If Not Val Is Nothing Then
            sAddr = Val.Address
            Do
                lCol = desWS.Cells(rng.Row, desWS.Columns.Count).End(xlToLeft).Column + 1
                desWS.Cells(rng.Row, lCol) = srcWS.Cells(Val.Row, 46)
                Set Val = srcWS.Range("A4:AH" & LastRow1).FindNext(Val)
            Loop While Val.Address <> sAddr
            sAddr = ""
        End If
    Next rng
    Application.ScreenUpdating = True
End Sub
The macro assumes your values in column A start in row 2.
 
Last edited:
Upvote 0
Thank you very much Mumps,

I will give it a try shortly and let you know if it works :) really appreciate the help :)
 
Upvote 0
This section of the code (in red below)

Sub ReturnVal()
Application.ScreenUpdating = False
Dim LastRow1 As Long, LastRow3 As Long, rng As Range, sAddr As String, Val As Range, lCol As Long, desWS As Worksheet, srcWS As Worksheet
Set desWS = Sheets("Sheet9")
Set scrWS = Sheets("Sheet1")
LastRow1 = srcWS.Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
LastRow3 = desWS.Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
For Each rng In desWS.Range("A2:A" & LastRow3)
Set Val = srcWS.Range("A4:AH" & LastRow1).Find(rng, LookIn:=xlValues, lookat:=xlWhole)
If Not Val Is Nothing Then
sAddr = Val.Address
Do
lCol = desWS.Cells(rng.Row, desWS.Columns.Count).End(xlToLeft).Column + 1
desWS.Cells(rng.Row, lCol) = srcWS.Cells(Val.Row, 46)
Set Val = srcWS.Range("A4:AH" & LastRow1).FindNext(Val)
Loop While Val.Address <> sAddr
sAddr = ""
End If
Next rng
Application.ScreenUpdating = True
End Sub
 
Upvote 0
OK I found the error
it was in the set row. It was set as SCR instead of SRC. Having changed that, it all seems ok but there are no values returned at all??
real strange
 
Upvote 0
OK Now I have it returning data, but it isn't the correct data?
Originally i had given the incorrect column number to return
 
Upvote 0
Change the 46 in the code to the column number of the column you want to return.
 
Upvote 0

Forum statistics

Threads
1,214,382
Messages
6,119,194
Members
448,874
Latest member
Lancelots

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