Hi All,
I am trying to create macro for subtotaling rows:
Application.CutCopyMode = False
rw = Range(Range("A1"), Range("A1").EndxlDown)).Rows.Count
col = 16
Range("A1").Resize(rw, col).Select
Selection.subtotal GroupBy:=6, Function:=xlSum, TotalList:=Array(15, 16), _
Replace:=True...