I did some searching and was able to paste together this code. I was hoping that is would atleast copy the data to the right sheet, once that was solved I could then focus on getting it to go to the right place with in that sheet. But It errors out at Worksheets(MonthName).Activate saying script out of range?? Any Ideas??
Thank you.
Sub transfer()
Dim DivName As String
Application.ScreenUpdating = False
For i = 5 To Worksheets("Database").Range("F" & Rows.Count).End(xlUp).Row
Worksheets("Database").Activate
Select Case Range("F" & i).Value
Case 1
DivName = "AFD"
Case 2
DivName = "EXEC"
End Select
Rows(i).Copy
Worksheets(DivName).Activate
Range("A" & Worksheets(DivName).Range("A" & Rows.Count).End(xlUp).Row + 1).Select
ActiveSheet.Paste
Next i
Application.ScreenUpdating = True
End Sub
Bookmarks