For starters you can try and put
Application.ScreenUpdating = False
at the beginning of the sub
and at the end
Application.ScreenUpdating = True
Also, you do not need to select an object to work with it
Not tested but you might be able to change it all to
Sub blabla()
pocet = Range("B" & Rows.Count).End(xlUp).Row
Application.ScreenUpdating = False
For i = 1 To pocet Step 3
Range("A" & i & ":B" & i).Cut Range("F" & i + 1).Paste
Range("B" & i + 2).Cut Range("B" & ii)
Next
Application.ScreenUpdating = True
End Sub
Bookmarks