count and add in autofilter

G2K

Active Member
Joined
May 29, 2009
Messages
355
Hi,

I want to count and sum of the autofilter data in sheet1 to sheet2
below is the code with erros msg -

sub addautofitler()
Dim Sh As Worksheet
Dim Rng As Range
Dim ws As Worksheet
Dim Cell As Range
Dim Unique As New Collection
Dim i As Integer
Dim rcount As Long
Dim esum As Long
Dim ShTarget As Worksheet
Set Sh = Worksheets("Data")
With Sh
Set Rng = .Range("G2:G" & .Range("G" & .Rows.Count).End(xlUp).Row)
End With

For Each Cell In Rng
Unique.Add Cell.Value, CStr(Cell.Value) '// Key is already associated with an element of this collection
Next Cell
On Error GoTo 0
Set Rng = Sh.Range("A1").CurrentRegion
For i = 1 To Rng
Rng.AutoFilter
Rng.AutoFilter Field:=7, Criteria1:=Unique(i)
Set ShTarget = Worksheets("tables")
rcount = Rng.SpecialCells(xlCellTypeVisible).Count
ShTarget.Range(a2).Value = rcount

'//want to add value of J column and paste it in A3


Next i
With Sh
.AutoFilterMode = False
.Select
End With
End Sub
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.

Forum statistics

Threads
1,214,973
Messages
6,122,534
Members
449,088
Latest member
RandomExceller01

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