Private Sub Value_Change(ByVal Target As Excel.Range)
If Not (Intersect(Target, Range("A1:A100")) Is Nothing) Then
Range("B1:B100").Value = Range("A1:A100").Value + Range("B1:B100").Value
End If
End Sub
I write this to trying to achieve that A1 +B1 =B1(New) ,A2+B2=B2(New), and so on
However, it is not working at all....
Anyone can help me
If Not (Intersect(Target, Range("A1:A100")) Is Nothing) Then
Range("B1:B100").Value = Range("A1:A100").Value + Range("B1:B100").Value
End If
End Sub
I write this to trying to achieve that A1 +B1 =B1(New) ,A2+B2=B2(New), and so on
However, it is not working at all....
Anyone can help me