DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [A4:C100]) Is Nothing Then Exit Sub
Application.EnableEvents = False
Application.ScreenUpdating = False
a = Target.Row
b = Target.Column
For i = 1 To Sheets.Count
If Sheets(i).Name <> ActiveSheet.Name Then
Sheets(i).Cells(a, b) = Target
Sheets(i).Cells(a, "D").FormulaR1C1 = "=R2C4/R2C5*RC[-1]"
End If
Next
Application.ScreenUpdating = True
Application.EnableEvents = True
End Sub
Private Sub Worksheet_BeforeDelete()
If Intersect(Target, [A4:C100]) Is Nothing Then Exit Sub
Application.EnableEvents = False
Application.ScreenUpdating = False
a = Target.Row
For i = 1 To Sheets.Count
If Sheets(i).Name <> ActiveSheet.Name Then
Sheets(i).Rows(a).Delete shift:=xlUp
End If
Next
Application.ScreenUpdating = True
Application.EnableEvents = True
End Sub