Returning list with common values

Topdrop18

New Member
Joined
Dec 28, 2009
Messages
25
Hello All,

I have searched through the posts and could not find an answer to this one. I am trying to search through data and return all of the results that have a common value. For simplicity, say I have a list of 5 people in column A (John, Mike, Jeff, Andrew, Simon) and their job title in column B (President, Analyst, CFO, Manager, Analyst). I am looking for a formula that will return all of the people in column A, depending upon my search criteria in column B. So, if I put in "Analyst", I will get a result of Mike and Simon. I know I could do a vlookup and have the range change time but because my data set is much larger than my example, that is not feasible. Thank you for some help.

Jeff
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
You could try something simple like the following, unless your situation is more complex than you first stated. If it is (and perhaps even if its not) you should consider importing your data into a Access table and running a simple select query.

Obviously manipulate the code as per your requirements.

Code:
Sub test()
Dim JobTitle As String
Dim i, j, k As Integer

    Cells(1, 1).Select
    i = Selection.CurrentRegion.Rows.Count
    JobTitle = Cells(1, 4).Value
    k = 2
    
    Cells(1, 2).Select

    For j = 1 To i
        If ActiveCell.Value = JobTitle Then
            Cells(k, 4).Value = ActiveCell.Offset(0, -1).Value
            ActiveCell.Offset(1, 0).Select
            k = k + 1
        Else: ActiveCell.Offset(1, 0).Select
        End If
    Next j
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,917
Members
449,093
Latest member
dbomb1414

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