Autofilter & copy results to new worksheet

S

stac2410

Good morning! I've been using Ron de Bruin's code to create the followin
procedure

Push a button to run a report. When the button is pushed, a message bo
appear
and asks for criteria. The user types in the criteria and say
"OK"
then an autofilter is performed on a main worksheet in the workbook, using th
input criteria as the autofilter criteria. The results are then pasted ove
int
a specified worksheet in the workbook. The code below does this perfectly


'Note: This macro use the function LastRo
'Important: The DestSh must exis
Dim My_Range As Rang
Dim DestSh As Workshee
Dim CalcMode As Lon
Dim ViewMode As Lon
Dim FilterCriteria As Strin
Dim CCount As Lon
Dim rng As Rang

'Set filter rang
Set My_Range = Worksheets("Marketin
Elections").Range("A4:Z" &amp
LastRow(Worksheets("Marketin
Elections"))

'Set the destination workshee
Set DestSh = Sheets("Marketing Election Report"

If ActiveWorkbook.ProtectStructure = True Or My_Range.Parent.ProtectContents
True The
MsgBox "Sorry, that feature is not available when the workbook i
protected.", vbOKOnly, "Copy to new worksheet&quot
Exit Su
End I

'Change ScreenUpdating, Calculation, EnableEvents, ...
With Applicatio
CalcMode = .Calculatio
.Calculation = xlCalculationManua
.ScreenUpdating = Fals
.EnableEvents = Fals
End Wit
ViewMode = ActiveWindow.Vie
ActiveWindow.View = xlNormalVie
ActiveSheet.DisplayPageBreaks = Fals

'Firstly, remove the AutoFilte
My_Range.Parent.AutoFilterMode = Fals

'If you want to filter on a Inputbox value use thi
FilterCriteria = InputBox("What type of election do you need inf
for?",
"Enter election type"
If FilterCriteria = "" Then Exit Su
FilterCriteria = Replace(FilterCriteria, "*", ""
FilterCriteria = "*" & FilterCriteria & "*&quot
My_Range.AutoFilter Field:=22, Criteria1:="=" & FilterCriteri

'Check if there are not more then 8192 areas(limit of areas that Excel ca
copy
CCount =
On Error Resume Nex
CCount
My_Range.Columns(1).SpecialCells(xlCellTypeVisible).Areas(1).Cells.Coun
On Error GoTo
If CCount = 0 The
MsgBox "There are more than 8192 areas:"
& vbNewLine & "It is not possible to copy the visible data.&quot

& vbNewLine & "Tip: Sort your data before you use thi
macro.",
vbOKOnly, "Copy to worksheet&quot
Els
'Copy the visible data and use PasteSpecial to paste to the Dests
With My_Range.Parent.AutoFilter.Rang
On Error Resume Nex
' Set rng to the visible cells in My_Range without the header ro
Set rng = .Offset(1, 0).Resize(.Rows.Count - 1, .Columns.Count)
.SpecialCells(xlCellTypeVisible
On Error GoTo
If Not rng Is Nothing The
'Copy and paste the cells into DestSh below the existing dat
rng.Cop
With DestSh.Range("A" & LastRow(DestSh) + 1
' Paste:=8 will copy the columnwidth in Excel 2000 and highe
' Remove this line if you use Excel 9
'.PasteSpecial Paste:=
.PasteSpecial xlPasteValue
.PasteSpecial xlPasteFormat
Application.CutCopyMode = Fals
End Wit
'Delete the rows in the My_Range.Parent workshee
'rng.EntireRow.Delet
End I
End Wit
End I

'Close AutoFilte
'My_Range.Parent.AutoFilterMode = Fals
My_Range.Parent.ShowAllDat

'Restore ScreenUpdating, Calculation, EnableEvents, ...

With Applicatio
.EnableEvents = Tru
.Calculation = CalcMod
End Wit
Call CopyMarketingElectionRepor

End Su


What I need to do though, is modify this so that instead of the user typing i
their criteria in the given field, they are given a combobox with set dat
criteria (the list is not dynamic), and their selection performs th
autofilte
just the same as above

Any suggestions?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top