I am having a problem with Excel crashing, when I run VBA code on an excel sheet. I\'m trying to add the following formula on worksheet change:
Private S
Also this solution is good:
Option Explicit Private Busy As Boolean Private Sub Worksheet_Change(ByVal Target As Range) If Not Busy Then Busy = True Range("A1:A8").Formula = "=B1+C1" Busy = False End If End Sub