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")...