So here is one that no doubt those VBA gurus amoung you can solve quickly. My code does a simple copy and paste funtion for a formula then overwrites it with a copy paste values. Below is the sample:
So the above covers 3 rows, I need to do it for over 750 rows and really don't want to have to repeat this for all of them. So far I have got to row58 and it is already visually slow.
It needs to work of every 3rd row.
All help much appreciated.
Code:
Sub Update_Actuals()
'
' Update_Actuals Macro
' Updates Actuals on Resources Data worksheet
'
'
Range("R7").Select
Selection.Copy
Range("S7:KF7").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("R10").Select
Selection.Copy
Range("S10:KF10").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("R13").Select
Selection.Copy
Range("S13:KF13").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
It needs to work of every 3rd row.
All help much appreciated.
Last edited by a moderator: