I apologize for not ready the forum rules prior to posting 
I will make sure to follow them going forward. Thank you for the kind notice!
I tried to run your script but received run-time error 438: Object doesn't support this property or method. No worries though because I had some help and the solution to my problem is below:
Sub rw_copy()
Dim wk As Worksheet
Dim rw1, rw2, ws_count As Integer
rw1 = 2
rw2 = 2
Workbooks("Book1").Activate
ws_count = ActiveWorkbook.Worksheets.Count
For i = 1 To ws_count
Sheets(i).Activate
Do While rw1 < 1000
If Cells(rw1, 11) <> "" Then
Rows(rw1).Copy
Workbooks("Book2").Sheets("sheet1").Activate
Rows(rw2).Select
ActiveSheet.Paste
Workbooks("Book1").Activate
rw1 = rw1 + 1
rw2 = rw2 + 1
Else
rw1 = rw1 + 1
End If
Loop
rw1 = 2
ws_count = ws_count + 1
Next i
End Sub
Bookmarks