ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Filter and copy entire row (https://www.excelbanter.com/excel-programming/291616-filter-copy-entire-row.html)

yami-s

Filter and copy entire row
 
Hi,
I'm newbe at VB.
I have a form that runs an table in a work sheet.
I have combox in the form that pull its content from a parameter
sheet.
The qustion is how can I filtter the table trough the combox, and cop
the filtered data into another sheet

10x
yam

--
Message posted from http://www.ExcelForum.com


Tom Ogilvy

Filter and copy entire row
 
this pseudo code might give you some ideas:

Private Sub Combobox1_Click()
Dim rng as Range
with worksheets("sheet1")
if .AutofilterMode then .AutofilterMode = False
.Range("A1:F200").AutoFilter Field:=1, Criteria1:=Combobox1.Text
set rng = .Autofilter.Range
rng.offset(1,0).Resize(rng.rows.count-1).Copy _
Destination:=Worksheets("Sheet2").Cells(rows.count ,1).End(xlup)
End With
End Sub

--
Regards,
Tom Ogilvy

"yami-s " wrote in message
...
Hi,
I'm newbe at VB.
I have a form that runs an table in a work sheet.
I have combox in the form that pull its content from a parameters
sheet.
The qustion is how can I filtter the table trough the combox, and copy
the filtered data into another sheet

10x
yami


---
Message posted from http://www.ExcelForum.com/




yami-s[_3_]

Filter and copy entire row
 
Thanks,
it looks great.
I'll get in the office and try it first thing in the morning
yami


---
Message posted from http://www.ExcelForum.com/



All times are GMT +1. The time now is 06:08 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com