How about this for a start. What do I need to do to have this macro search all of column a and return all the values of column b that corespond to the title "Name:" so that I have a list of all program names. Then I can work on getting the ME names after that. Oh, and I just noticed that the spacing between the programs is not equal so that may create problems but again one step at a time.
Windows("Master file.xls").Activate
Do While Range("A1").Value = "Name:"
Range("B1").Select
Selection.Copy
Windows("Picklist Communication Tool.xlsm").Activate
ActiveSheet.Paste
Loop
End
Bookmarks