View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
FurRelKT FurRelKT is offline
external usenet poster
 
Posts: 42
Default Help undertanding Subtotals

Hello all, another newbe question,
I am unsure how to add the information above the subtotal to the
subtotal row.
I have this subtotal line in my code:
Selection.subtotal GroupBy:=3, Function:=xlSum, TotalList:=Array(14),
_
Replace:=True, PageBreaks:=False, SummaryBelowData:=True
I am totaling the amount in Column 14, but in columns 10-13,
i want to use the previous row's values and add those values to
the subtotal row. The rows change and are not always the same.

So, my row would be something like:
I: BLANK J: ABCD K:TBAVA L:THIS AND THAT M: SUPPORT N: 20
I: BLANK J: ABCD K:TBAVA L:THIS AND THAT M: SUPPORT N: 25
SubTotal N:45

So, instead of not seeing anthing in the subtotal besides subtotal and
the amount,
I want to copy the line above the subtotal paste it into the subtotal
line. So,
the subtotal line would read from the above example:
I: Subtotal J:ABCD K:TBAVA L:THIS AND THAT M:SUPPORT N:45

I have read some other posts concerning this issue and nothing i read
has
completed the solution. Any help would sure be appreciated.