Creating an If statement, to sort out my data based on the month in a certain column. The code is as such
Worksheets("Project Info").Activate
Dim month As Long
Application.ScreenUpdating = False
For month = Cells(Rows.Count, 23).End(xlUp).Row To 1 Step -1
If InStr(1, Cells(month, 23).Value Like "1/*", 1) _
Then Cells(month, 23).EntireRow.Copy
Worksheets("January").Activate
ActiveSheet.Paste
Next month
For some reason, it won't copy data into the specified page. It doesn't even actually copy the data at all. Any ideas?