Hello,
I have the bit of code below that takes quite a while to complete, so I'm trying to speed it up!
The code loops from row 2 through to row 820, but it could skip certain rows if the row value in say column Z equalled 0.
Is this possible?
Code:
Sheets("Material".Select
[k1] = [l1]
[j2:j820].Value = [c2:c820].Value
Dim R As Long
'Loop till R = 820
For R = 2 To 820
'Cells(RowNumber,ColNumber)
Cells(R, 3).FormulaR1C1 = ""
Cells(R, 12).Value = Cells(R, 11).Value
Cells(R, 3).Value = Cells(R, 10).Value
Next R
Thanks
Andrew
I have the bit of code below that takes quite a while to complete, so I'm trying to speed it up!
The code loops from row 2 through to row 820, but it could skip certain rows if the row value in say column Z equalled 0.
Is this possible?
Code:
Sheets("Material".Select
[k1] = [l1]
[j2:j820].Value = [c2:c820].Value
Dim R As Long
'Loop till R = 820
For R = 2 To 820
'Cells(RowNumber,ColNumber)
Cells(R, 3).FormulaR1C1 = ""
Cells(R, 12).Value = Cells(R, 11).Value
Cells(R, 3).Value = Cells(R, 10).Value
Next R
Thanks
Andrew