Hello,
Im trying to learn VBA and Macros to write a code that will cut and paste specific parts of a row repetitively throughout the whole sheet and skipping a row. I have created this so far:
Range("C7 : H7") .Select
Selection. Cut
Range ("I6") .Select
ActivateSheet .Paste
Range("C9 : H9") .Select
Selection. Cut
Range ("I8") .Select
ActivateSheet .Paste
End Sub
What I need the code to do is to cut from C7 to H7 and then paste on I6. Then I need it to skip a row and do the same function, cut from C9 to H9 and paste on I8. I need this to happen on the whole sheet. I have read of something called loop but I dont know how to use it or if that would work.
Anyone's assistance is much appreciated.
Im trying to learn VBA and Macros to write a code that will cut and paste specific parts of a row repetitively throughout the whole sheet and skipping a row. I have created this so far:
Range("C7 : H7") .Select
Selection. Cut
Range ("I6") .Select
ActivateSheet .Paste
Range("C9 : H9") .Select
Selection. Cut
Range ("I8") .Select
ActivateSheet .Paste
End Sub
What I need the code to do is to cut from C7 to H7 and then paste on I6. Then I need it to skip a row and do the same function, cut from C9 to H9 and paste on I8. I need this to happen on the whole sheet. I have read of something called loop but I dont know how to use it or if that would work.
Anyone's assistance is much appreciated.