Using Excel To Generate A List Of Names From Data In Multiple Sheets

Trevor_McKay

New Member
Joined
Apr 3, 2023
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hi Everyone,

New guy here but am hoping one of you mastermind could help me out. I'm a new sales guy for a recruiting company and right now I'm filling daily excel sheets with the people I've reached out to and I want to make an automatic sheet of the names I've tried called but couldn't connect to and want to follow up over LinkedIn. Right now I've made a numeric code to outline if I called them and connected, using a very simple method. and have now made an If statement that identifies weather or not I need to send them a LinkedIn connection, but want I want is for every person that has received the designation of needing to be connected, to appear in a single sheet in a single list with their names. I've posted a picture below with my current sheet details and the IF statement i used is this:

"IF(C2=1,"No","Yes")

Let me know if you need more details or a better description and I could download the addon thing so you have access to my sheets!
 

Attachments

  • Capture.PNG
    Capture.PNG
    25.1 KB · Views: 14

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Instead of Daily sheets maybe put it all on one sheet and add a Date column.
Then put the data into an Excel table. Then as you add new names the data will automatically fill in the sheet of names to contact.
See example below.

Sheet with names to contact
Book2
A
1Name to Contact
2Craig Hubley
3Angela Williams
4Kabir Sarda
5Carolene Cruder
6Jenny Chan
7Scott Boston
8Juliane Johansen
9Patrick Amantea
10Cobus Van De Venter
Sheet2
Cell Formulas
RangeFormula
A2:A10A2=FILTER(Table1[Name],Table1[Contacted]="")
Dynamic array formulas.


Data sheet
Book2
ABCDEFGH
1pH + E + lnContactedTl?In-House?ln JS?NameNeed to Send Linkedin Connection?Date
2E1Richard GouletNo3/26/2023
3IN1Imran PunjaniNo3/26/2023
4E1Reema GokhruNo3/26/2023
5PH+ECraig HubleyYes3/26/2023
6PH+EAngela WilliamsYes3/26/2023
7PH+EKabir SardaYes3/26/2023
8pH11Janell PriddeyNo3/26/2023
9PH+E11Michael PackNo3/26/2023
10PH+ECarolene CruderYes3/27/2023
11PH+E11Braydin BrosseauNo3/27/2023
12PH+EJenny ChanYes3/27/2023
13PH+EScott BostonYes3/27/2023
14INJuliane JohansenYes3/27/2023
15PH+EPatrick AmanteaYes3/27/2023
16PH+ECobus Van De VenterYes3/27/2023
Sheet1
 
Upvote 0
Another method :

VBA Code:
Option Explicit

Sub NeedContact()
Dim rFind         As Range
Dim sAdr          As String

  With Sheets("Sheet1").Range("H2:H1000")
    .Select
    Set rFind = .Find(What:="Yes", _
                       After:=.Cells(.Cells.Count), _
                       LookIn:=xlValues, _
                       LookAt:=xlWhole, _
                       SearchOrder:=xlNext, _
                       MatchCase:=True)
    If Not rFind Is Nothing Then
      sAdr = rFind.Address
      Do
        Sheets("Need Contact").Cells(Rows.Count, "A").End(xlUp)(2).Value = rFind.Offset(, -1).Value2
        Set rFind = .FindNext(rFind)
      Loop While rFind.Address <> sAdr
    End If
  End With
  Sheets("Need Contact").Range("A1") = "Names"
   Sheets("Sheet1").Range("A1").Select
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,253
Messages
6,123,891
Members
449,131
Latest member
leobueno

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