Do you mean row #16 instead of #18 ?Dear Sir,
I need help for delete one row every 10 rows, Starting from first row #6 than #18 and so on till the end row 1193
Thank you in advanced,
Sub DeleteRows()
Dim totRows&, nthRow&, startRow&, endRow&, r&
totRows = 1193 'Total rows
nthRow = 10 'Every nth row to be deleted
startRow = 6 'Start row
endRow = totRows - (totRows - startRow) Mod nthRow
Application.ScreenUpdating = False
For r = endRow To startRow Step -nthRow
Rows(r).Delete
Next
Application.ScreenUpdating = True
End Sub