Subtotal Multiple Columns

Chris 1672

New Member
Joined
Feb 3, 2010
Messages
5
Hi,
Currently I'm completing a macro that will take a list of data and put it in to a report format. I'm still learning macros so are using a combination of recording the steps and then searching for previous macros created to do various steps

i have been able to create the following steps:
(i) Sort data in column B:
Sub Sort()
Range("B2").CurrentRegion.Select
Selection.Sort Key1:=Range("B2"), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
End Sub

(ii) Delete column A:
Sub DeleteA()
'
' DeleteA Macro


Columns("A:A").Select
Selection.Delete Shift:=xlToLeft
Range("A2").Select
End Sub


(iii) Insert a row after each new variable in column B and sum values in column D for these variables:

Sub subtots()
Dim sh As Worksheet, lr As Long, i As Long, x As Long, rng As Range, cel As Range
Set sh = Sheets(1) 'Edit sheet name
lr = sh.Cells(Rows.Count, 1).End(xlUp).Row
For i = lr To 2 Step -1
With sh
If .Cells(i, 1).Value = .Cells(i - 1, 1).Value Then
x = x + 1
Else
Set rng = .Cells(i, 4).Resize(x + 1, 1)
Set cel = .Cells(i, 4).Offset(x + 1, 0)
cel.EntireRow.Insert
cel.Offset(-1#) = Application.Sum(rng)
cel.Offset(-1, -3) = cel.Offset(-3, -3).Value & " Total"
x = 0
End If
End With
Next
End Sub


I also want to put a subtotal in column E for the same range as above, however can't figure out how to do it.

Would anyone have any ideas or thoughts, as i'm not understanding the code in point 3.
C
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.

Forum statistics

Threads
1,215,515
Messages
6,125,279
Members
449,220
Latest member
Excel Master

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