- Katılım
- 8 Nisan 2009
- Mesajlar
- 16
- Excel Vers. ve Dili
- 2003 türkçe
Mrb. Üstadlarım Aşağıdaki formülü siteden buldum. İşimi gördü fakat bu förmülle sadece A1 Hücresinde toplama yapabiliyorum. Ama ben aynı zamanda A2-A3-A4 vs. B1-B2-B3 vs. orada aynı işlemleri yapmasını istiyorum. Bunun çözümü hakkında bilgisi olan arkadaşlarımdan yardımcı olmasını rica ediyorum. Şimdiden teşekkür ederim...
Kod:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Static dAccumulator As Double
With Target
If .Address(False, False) = "A1" Then
If Not IsEmpty(.Value) And IsNumeric(.Value) Then
dAccumulator = dAccumulator + .Value
Else
dAccumulator = 0
End If
Application.EnableEvents = False
.Value = dAccumulator
Application.EnableEvents = True
End If
End With
End Sub
Kod:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Static dAccumulator As Double
With Target
If .Address(False, False) = "A1" Then
If Not IsEmpty(.Value) And IsNumeric(.Value) Then
dAccumulator = dAccumulator + .Value
Else
dAccumulator = 0
End If
Application.EnableEvents = False
.Value = dAccumulator
Application.EnableEvents = True
End If
End With
End Sub