Vishaal
Well-known Member
- Joined
- Mar 16, 2019
- Messages
- 543
- Office Version
- 2010
- 2007
- Platform
- Windows
- Web
Hi,
Please check the following macro code and advice how can we run it in loop,
Please check the following macro code and advice how can we run it in loop,
Code:
Sub Loop()
'
' Loop Macro
'
Range("D2:D8").Select
Selection.Copy
Range("E8").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Range("F2:F8").Select
Selection.Copy
Range("G8").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Selection.Copy
Range("E8").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End Sub