ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Help undertanding Subtotals (https://www.excelbanter.com/excel-programming/368889-help-undertanding-subtotals.html)

FurRelKT

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.
Keri


Tom Ogilvy

Help undertanding Subtotals
 
subtotal adds the value for the column it is subtotalling on. For each
subtotal row, that can only be one column.

--
Regards,
Tom Ogilvy


"FurRelKT" wrote:

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.
Keri



FurRelKT

Help undertanding Subtotals
 
Correct Tom, here is a better Subject:

Need help with adding values to the Subtotal Row.
(values that are from the above row).

Does that explain my issue better?

Any place you can direct me to learn would be greatly appreciated.
I just want to learn the correct way.

Keri


Tom Ogilvy wrote:
subtotal adds the value for the column it is subtotalling on. For each
subtotal row, that can only be one column.

--
Regards,
Tom Ogilvy




Tom Ogilvy

Help undertanding Subtotals
 
Range("A21:C21").FillDown

would fill A21:C21 with the values in A20:C20

as an example. another example:

set rng = Range("A1:A50").specialcells(xlblanks)
for each cell in rng
cell.Resize(1,3).filldown
next

might be what you want.



--
Regards,
Tom Ogilvy


"FurRelKT" wrote:

Correct Tom, here is a better Subject:

Need help with adding values to the Subtotal Row.
(values that are from the above row).

Does that explain my issue better?

Any place you can direct me to learn would be greatly appreciated.
I just want to learn the correct way.

Keri


Tom Ogilvy wrote:
subtotal adds the value for the column it is subtotalling on. For each
subtotal row, that can only be one column.

--
Regards,
Tom Ogilvy






All times are GMT +1. The time now is 11:23 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com