Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi everyone, I have some questions regarding Sub-Totals:
I have a macro to insert sub-totals on a spreadsheet with multiple columns. I want to Sum the values in most columns, Count the values in Column 7, and Average the values in Columns 9, 16, and 18. My code looks like this: Selection.Subtotal GroupBy:=3, Function:=xlSum, TotalList:=Array(10, 11, 12 _ , 13, 14, 15, 17, 19, 20), Replace:=True, PageBreaks:=False, SummaryBelowData:=True Selection.Subtotal GroupBy:=3, Function:=xlCount, TotalList:=Array(7), _ Replace:=False, PageBreaks:=False, SummaryBelowData:=True Selection.Subtotal GroupBy:=3, Function:=xlAverage, TotalList:=Array(9, 16 _ , 18), Replace:=False, PageBreaks:=False, SummaryBelowData:= True However, I would like to show the Subtotal Sums, Counts, and Averages on the same SubTotal row, not on separate rows. How can I do this? The workaround I am currently using is to Sum all columns first, then select Column 7 and do a search and replace on the subtotal Sum formula to change it to Count, then use the same process to change Columns 9, 16, and 18 to Average. This seems cumbersome, is there a cleaner way to do this? 2 follow-up questions: 1) Can I format the entire row with the Subtotals to be in bold font, as opposed to just the row heading €śColumn 3 Total€ť being in bold? 2) Can I format the Count Sub-Total values for Column 7 to be in number format with commas and no decimal places? The data in Column 7 is in a Custom Format with leading zeroes, but I do not want the Count Sub-Totals to be in that format. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Answers to questions posing more questions in a workbook | Excel Worksheet Functions | |||
View Questions and Answer to questions I created | Excel Discussion (Misc queries) | |||
Excel 2002 : Any single button to get sub total and grand total ? | Excel Discussion (Misc queries) | |||
the total number of "Very Satisfied" questions there are | Excel Worksheet Functions | |||
Total Questions | Excel Discussion (Misc queries) |