For every change in column 2, I need to subtotal columns 10, 11, 12, 13. But I also need to average column 9.
Is there a way to add that in to the macro I have listed? Or how can this be accomplished?
Range("A:O").Subtotal GroupBy:=2, _
Function:=xlSum, _
TotalList:=Array(10, 11, 12, 13), _
Replace:=True, _
PageBreaks:=False, _
SummaryBelowData:=True
Is there a way to add that in to the macro I have listed? Or how can this be accomplished?
Range("A:O").Subtotal GroupBy:=2, _
Function:=xlSum, _
TotalList:=Array(10, 11, 12, 13), _
Replace:=True, _
PageBreaks:=False, _
SummaryBelowData:=True