Necati bey çok sağolun tam istediğim gibi olmuş elinize emeğinize sağlık çok teşekkürlerKod:Sub Alttoplamile_Satir_Satir_Yaz2() Dim sonsat As Long Application.ScreenUpdating = False Application.DisplayAlerts = False With ThisWorkbook.Worksheets("Sayfa1") If .FilterMode Then .ShowAllData End With Range("A1").Select Selection.RemoveSubtotal Range("A1").Select Selection.Subtotal GroupBy:=7, Function:=xlSum, TotalList:=Array(5, 6), _ Replace:=False, PageBreaks:=True, SummaryBelowData:=True Columns("E:F").SpecialCells(xlFormulas).Font.Bold = True sonsat = Cells(Rows.Count, "G").End(3).Row Range("G1:G" & sonsat).Select Selection.Replace What:="*Toplam*", Replacement:="", LookAt:=xlPart, _ SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _ ReplaceFormat:=False Application.DisplayAlerts = True Application.ScreenUpdating = True ActiveSheet.PageSetup.PrintTitleRows = "$1:$1" ActiveSheet.PrintOut , preview:=True ActiveSheet.ResetAllPageBreaks Selection.RemoveSubtotal End Sub