VBA to group row range based on subtotal formula

excelsishya

Board Regular
Joined
Jul 25, 2010
Messages
107
Hi all ,

I am in need of code which can group data range based on subtotal formula.

a1 1
a2 3
a3 4
a4 =subtotal(9,a1:a3)
a5=7
a6=1
a7=2
a8=subtotal(9,a6:a7)
i am using excel 2007
desired output

grouping a1 :a3 and a6:a7 as they have subtotal formula

after grouping in collapse mode

a4
a5
a8

Thanks
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Try this

<font face=Courier New><br><SPAN style="color:#00007F">Sub</SPAN> GroupbySubtotalFormula()<br>    <SPAN style="color:#00007F">Dim</SPAN> rFormulas <SPAN style="color:#00007F">As</SPAN> Range, c <SPAN style="color:#00007F">As</SPAN> Range<br>    <SPAN style="color:#00007F">Dim</SPAN> s <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">String</SPAN><br>    <br>    <SPAN style="color:#00007F">Set</SPAN> rFormulas = Range("A1", Range("A" & Rows.Count).End(xlUp)).SpecialCells(xlCellTypeFormulas)<br>    For <SPAN style="color:#00007F">Each</SPAN> c <SPAN style="color:#00007F">In</SPAN> rFormulas<br>        s = c.Formula<br>        <SPAN style="color:#00007F">If</SPAN> Left(s, 9) = "=SUBTOTAL" <SPAN style="color:#00007F">Then</SPAN><br>            s = Split(Left(s, Len(s) - 1), ",")(1)<br>            Range(s).EntireRow.Group<br>        <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN><br>    <SPAN style="color:#00007F">Next</SPAN> c<br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN><br></FONT>
 
Upvote 0

Forum statistics

Threads
1,224,592
Messages
6,179,789
Members
452,942
Latest member
VijayNewtoExcel

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