Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I need the Grand Total to always show up on B126 through K126 but it will
only put a grand total in K126. I see in my macro why, but I dont know how to correctly fix it. Help! :) Sub Piece() Range("A14:K120").Sort _ Key1:=Range("A14"), _ Order1:=xlAscending, _ Header:=xlGuess, _ OrderCustom:=1, _ MatchCase:=False, _ Orientation:=xlTopToBottom Range("A13:K120").Subtotal _ GroupBy:=1, _ Function:=xlSum, _ TotalList:=Array(2, 3, 4, 5, 6, 7, 8, 9, 11), _ Replace:=True, _ PageBreaks:=False, _ SummaryBelowData:=True Range("B128").FormulaR1C1 = "=SUM(R[-2]C*R[-116]C)" With Range("C128") .Style = "Currency" .FormulaR1C1 = "=SUM(R[-2]C*R[-116]C)" End With Range("D128").FormulaR1C1 = "=SUM(R[-2]C*R[-116]C)" Range("E128").FormulaR1C1 = "=SUM(R[-2]C*R[-116]C)" Range("F128").FormulaR1C1 = "=SUM(R[-2]C*R[-116]C)" Range("G128").FormulaR1C1 = "=SUM(R[-2]C*R[-116]C)" Range("H128").FormulaR1C1 = "=SUM(R[-2]C*R[-116]C)" Range("I128").FormulaR1C1 = "=SUM(R[-2]C*R[-116]C)" Range("K128").FormulaR1C1 = "=SUM(R[-2]C)" Range("A131").Value = "Totals" Range("B131").Value = "" Range("K126").Formula = "=" & _ Cells.Find( _ What:="Grand Total", _ After:=Range("A1"), _ LookIn:=xlFormulas, _ LookAt:=xlPart, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False, _ SearchFormat:=False).Offset(0, 10).Address Range("A131").Select End Sub |