VBA filter, how to add additonal filter

2avrham

Board Regular
Joined
May 12, 2014
Messages
104
Office Version
  1. 365
Hi all,

I have the next VBA code that filter on two items: "hold" & "wip"


ActiveSheet.Range("$A$5:$T$5").AutoFilter Field:=11, Criteria1:="=HOLD", _
Operator:=xlOr, Criteria2:="=WIP"

My Q is how i can add third filter of "Future wip" for this code, i was sure it will be simple but i miss something here because after i add Criteria3:="=future wip", I'm getting errors.

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.
Hi there. You need to use an array. Try:

VBA Code:
ActiveSheet.Range("$A$5:$T$5").AutoFilter Field:=11,  Criteria1:=Array("HOLD","WIP", "future wip"), Operator:=xlFilterValues
 
Upvote 0

Forum statistics

Threads
1,214,999
Messages
6,122,645
Members
449,093
Latest member
Ahmad123098

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