[ NEED HELP ] Loop in VBA
Hi all, I'm totally new into VBA. I need to Loop a task from row to row ( about 99 rows). I get some sample Loop coding from the internet and however it seem like din't works for me, anyone here can help me looks at the coding below for the Loop? Thanks alot
Sub For_Loop()
Dim x As Long
' test3 Macro
'
' Keyboard Shortcut: Ctrl+Shift+C
For x = 1 To 100
ActiveWorkbook.RefreshAll
Range("E2:Q2").Select
Selection.Copy
Range("E2").Select
Selection.PasteSpecial xlPasteValues
Range("E2").Select
Next x
End Sub
|