Sorry Tony!
Here is the code as it stands now!
'Open workbook1
Workbooks.Open Filename:="C:\workbook1.xls", _
UpdateLinks:=0
'Pull the fund names from workbook1
Do Until Cells(intFundName, 3).Value = "Totals"
intFundName = intFundName + 1
Loop
'To not include the word "Totals" in that column
intFundName = intFundName - 1
Range("C5" & ":C" & intFundName).Select
Selection.copy
Windows("workbook2.xls").Activate
Sheets("FundInfo").Select
Range("B" & FindNextRowFundName).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
'Re-Open workbook1
Windows("workbook1.xls").Activate
'Pull the fund ids from workbook1
Do Until Cells(intFundID, 2).Value = ""
intFundID = intFundID + 1
Loop
Range("B5" & ":B" & intFundID).Select
Selection.copy
Windows("workbook2.xls").Activate
Sheets("FundInfo").Select
Range("C" & FindNextRowFundID).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
'Re-Open workbook1
Windows("workbook1.xls").Activate
'Pull the months from workbook1
Range("D4:O4").Select
Selection.copy
Windows("workbook2.xls").Activate
Sheets("Month Reference").Select
Range("A3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True
See.... I am working with this pre-existing file that currently works with VLookups. This company wants me to completely automate this with a Macro.
The second workbook is a template. The first workbook is funded manually by the user. I just need to populate the second workbook with the information from the first workbook.
Now.... I am upto the part where in the dropdown list are the fund names that I have already populated, as you can see above. I basically have the FundInfo sheet that consist of the Fund Names that I have brought over from workbook1. I need for when the user clicks on a particular fund name that the corresponding information for that fund name populates the sheet that is in workbook2, names Class B.
Nevermind what I had said before about populating the bottom part of the template. That I know how to do.
I just need to figure out when the user has selected a fund name, for the Class B sheet to be populated with the selected fund name.
I hope this explanation is better.
Uby X-)