DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Sub ALT_TOPLAM_AL()
Application.DisplayAlerts = False
Application.ScreenUpdating = False
With Columns("A:E")
.RemoveSubtotal
.Subtotal GroupBy:=1, Function:=xlSum, TotalList:=Array(4, 5), _
Replace:=True, PageBreaks:=False, SummaryBelowData:=True
End With
Application.ScreenUpdating = True
Application.DisplayAlerts = True
End Sub