When i open a file there is certain data that repeatedly appears. My current method is to type in each row individually and making macros to delete it for me Is there an easier way? I believe the rows i want to delete occur every 28 rows or so and i want to delete the 4 rows after that.
What i've got now is something like:
Rows("44:55").Select
Selection.ClearContents
Selection.Delete Shift:=xlUp
Rows("86:97").Select
Selection.Delete Shift:=xlUp
Rows("125:136").Select
Selection.Delete Shift:=xlUp
etc...
This is getting tedious and i'm nowhere near the end...
is there a better way? please enlighten me
Thanks
BLyss
What i've got now is something like:
Rows("44:55").Select
Selection.ClearContents
Selection.Delete Shift:=xlUp
Rows("86:97").Select
Selection.Delete Shift:=xlUp
Rows("125:136").Select
Selection.Delete Shift:=xlUp
etc...
This is getting tedious and i'm nowhere near the end...
is there a better way? please enlighten me
Thanks
BLyss