![]() |
#1
|
|||
|
|||
![]()
I am not a star in Excel and certainly a newbie in VBA. In the attached file you see in worksheet "Source" in column C different reviews. Among these reviews are also "Error" and "Not good". The "Copy" worksheet should be a copy of the "Source" worksheet, but the rows with "Error" and "False" should not be copied. These rows may be left empty, but it would even be better of it is possible to leave them out entirely so that only 4 rows remain in worksheet "Copy".
I have been sent a code that should do it. That code is: Sub Ja() With Sheets("bron").Range("A4:C11") 'je bron .Parent.AutoFilterMode = False 'filter uitzetten in blad .AutoFilter Field:=3, Criteria1:=Array("Ja", "Ja goed", "Ja ok", "nog een andere reden"), Operator:=xlFilterValues 'array met alles dat wel meemag .Copy Sheets("Kopie").Range("E4") 'doorkopieren .Parent.AutoFilterMode = False 'filter uitzetten End With End Sub But now I don't know what to do with that code at all. Where to put it. Can anyone help? |
Thread Tools | |
Display Modes | |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
Btop | Word VBA | 7 | 02-13-2018 05:36 PM |
![]() |
cltay87 | Word VBA | 4 | 02-27-2017 04:23 AM |
Copying specific columns of a table to WORD and deleting rows | ffinley | Word VBA | 5 | 12-07-2015 04:01 PM |
![]() |
beginner | Word | 2 | 01-05-2015 05:47 AM |
![]() |
Elan05 | Word VBA | 23 | 09-11-2014 12:47 PM |