Sub Others_bis()
Dim i&, endrow&, ws As Worksheet, OTH As Worksheet
Set OTH = ActiveWorkbook.Sheets("Other & Special Requests")
For Each ws In Worksheets
If ws.Name <> "Other & Special Requests" Then
endrow = ws.Range("A" & ws.Rows.Count).End(xlUp).Row
For i = 2 To endrow
If ws.Cells(i, "G").Value = "Others" And ws.Cells(i, "I").Value = "To be Done" Then
ws.Cells(i, "G").EntireRow.Cut Destination:=OTH.Range("A" & OTH.Rows.Count).End(xlUp).Offset(1)
End If
Next
End Sub