Sort Data and total grouped data

detrw4always

New Member
Joined
Feb 26, 2016
Messages
4
[h=2]Sort data by one column then total by using sub totals in that colomn[/h]
Here is my data:

Description Seller Number Buyer Number Sale Price Commission Sales Tax Buyers Preimum Total
Brown Riding Plush Horse 100 342 30.5 6.1 1.83 4.58 36.91
Blue Boys Mongoose bike 20" 200 200 55 9.9
Queen Purple Bed Comforter 100 342 85 12.75
Large Oak Bedroom Dresser 150 12


I would like a macro that can be run on the fly, to sort buy buyer number, then total by each buyer number it would be totaling the total column and the commission column. I do not write macros and know very very little about how to write them so I need a pretty detailed explaintion on how I can go about doing this. I would need to be able to run this through out a night at various points as an auction is taking place.

ANY IDEAS? I know it can be done just not sure how to do it on my own.

Thanks,​
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Welcome to the MrExcel board!

It isn't clear just what columns are what, but see if you can make use of this.

Rich (BB code):
Sub SortAndSubtotal()
  With Range("A1").CurrentRegion
    .Sort Key1:=.Columns(3), Order1:=xlAscending, Header:=xlYes, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
    .Subtotal GroupBy:=3, Function:=xlSum, TotalList:=Array(5, 8), Replace:=True, PageBreaks:=False, SummaryBelowData:=True
  End With
End Sub

The red 3s should be whatever column the "Buyer Number" is. So 3, as I have it would be column C.

The blue numbers should be a list of the columns that you want the subtotals for. So 5, & 8 as i have it would be columns E & H.
 
Last edited:
Upvote 0
Welcome to the MrExcel board!

It isn't clear just what columns are what, but see if you can make use of this.

Rich (BB code):
Sub SortAndSubtotal()
  With Range("A1").CurrentRegion
    .Sort Key1:=.Columns(3), Order1:=xlAscending, Header:=xlYes, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
    .Subtotal GroupBy:=3, Function:=xlSum, TotalList:=Array(5, 8), Replace:=True, PageBreaks:=False, SummaryBelowData:=True
  End With
End Sub

The red 3s should be whatever column the "Buyer Number" is. So 3, as I have it would be column C.

The blue numbers should be a list of the columns that you want the subtotals for. So 5, & 8 as i have it would be columns E & H.


"you are right I want to sort by column c and then add column i over all. As I have no idea how to go about doing a macro, if anyone has the ability to help me step by step as I tried this macro with my limited knowledge and it would not work." Thank you
 
Last edited by a moderator:
Upvote 0
you are right I want to sort by column c and then add column i over all.
In that case, the code would be

Rich (BB code):
Sub SortAndSubtotal()
  With Range("A1").CurrentRegion
    .Sort Key1:=.Columns(3), Order1:=xlAscending, Header:=xlYes, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
    .Subtotal GroupBy:=3, Function:=xlSum, TotalList:=Array(9), Replace:=True, PageBreaks:=False, SummaryBelowData:=True
  End With
End Sub


..I tried this macro with my limited knowledge and it would not work.
Just saying something would not work, doesn't give us much to go to help.
How did you 'try' it?
Did it do nothing?
Did it give the wrong results?
Did it give an error message?
Something else


As I have no idea how to go about doing a macro, if anyone has the ability to help me step by step ..
There are several ways to implement & run a macro. Here is one way.

1. Right click the sheet name tab and choose "View Code".

2. In the Visual Basic window that opens, use the menu to Insert|Module

3. Copy and Paste the code above into the main right hand pane that opens at step 2.

4. Close the Visual Basic window.

5. Back at your sheet, press Alt+F8, select the 'SortAndSubtotal' macro and click 'Run'

6. If using Excel 2007 or later your workbook will need to be saved as a macro-enabld workbook (*.xlsm)
 
Upvote 0

Forum statistics

Threads
1,214,846
Messages
6,121,905
Members
449,054
Latest member
luca142

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top