S
scotiajoe
Range("L1").Select
count2 = 1
For count1 = 1 To 900
Range(Cells(count2, 12), Cells(count2, 12)).Select
If ActiveCell.Value <> 0 Then
count2 = count2 + 1
Else: Selection.EntireRow.Delete
count2 = count2
End If
Next
Range("M1").Select
count2 = 1
For count1 = 1 To 900
Range(Cells(count2, 13), Cells(count2, 13)).Select
If ActiveCell.Value <> 0 Then
count2 = count2 + 1
Else: Selection.EntireRow.Delete
count2 = count2
End If
Next
Thank you
count2 = 1
For count1 = 1 To 900
Range(Cells(count2, 12), Cells(count2, 12)).Select
If ActiveCell.Value <> 0 Then
count2 = count2 + 1
Else: Selection.EntireRow.Delete
count2 = count2
End If
Next
Range("M1").Select
count2 = 1
For count1 = 1 To 900
Range(Cells(count2, 13), Cells(count2, 13)).Select
If ActiveCell.Value <> 0 Then
count2 = count2 + 1
Else: Selection.EntireRow.Delete
count2 = count2
End If
Next
Thank you