Right click on the December 2012 sheet and paste macro below on the right side of screen.
Now when you place an action item in column L that action item will be transferred to the next available row on the Action Items sheet
Private Sub Worksheet_Change(ByVal Target As Range)
Dim destSht As Worksheet: Set destSht = Sheets("Action Items")
Dim destLR As Long: destLR = destSht.Range("C" & Rows.Count).End(xlUp).Row + 1
If Not Intersect(Target, Range("L:L")) Is Nothing Then
If destLR = 8 Then
Target.Copy Destination:=destSht.Range("C9")
Else
Target.Copy Destination:=destSht.Range("C" & destLR)
End If
End If
End Sub
Bookmarks