I have a total of 800 rows. While the code is running, excel freezes and is completed in almost 1 minute. Where do you think this problem arises? Does the same code run fast and smoothly on your computer? Do you have the same problems while the code is running?
Sub counterfunc()
Dim i, counter As Integer
For i = 2 To Sayfa3.Range("A:A").End(xlDown)
Sayfa3.Cells(i, "J").Value = Sayfa3.Cells(i, "A").Value
counter = counter + 1
Next
End Sub