Once in 3 or 4 code runs, excel is crashed with that strange, tough error message about Error in data connection (can’t connect). Code is extremely simple (crashed at the last line):
Any thoughts, experience, ideas?..
Code:
Set wsS = Target.Parent
Set rng = wsS.Range("B3:F186")
Set d = wsS.Range("G3")
rng.Copy
d.Insert Shift:=xlToRight
. . .