Application.ScreenUpdating = False
Dim pasteSheet As Worksheet
Set pasteSheet = Worksheets("Remediation Summary")
For Each ws In ThisWorkbook.Worksheets
If ws.Index <= (ThisWorkbook.Worksheets.Count - 1) Then
For Each iCell In ws.Range("i1:i200").Cells
If iCell.Value Like ("X") Then
pasteSheet.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues
Application.CutCopyMode = False
Application.ScreenUpdating = True
For Each jCell In ws.Range("j1:j200").Cells
If jCell.Value Like ("X") Then
pasteSheet.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues
Application.CutCopyMode = False
Application.ScreenUpdating = True