VBA Arrays

maslam15

New Member
Joined
Aug 21, 2019
Messages
24
Hello,
I am using VBA arrays to select certain options in the list.
For Example the Code below Selects five people in the table. What I want to do with the array is to select everything excluding the options already selected. So instead of selecting these five people, select everything else in the column.

Range("Table1[[#Headers],[People]]").Select
ActiveSheet.ListObjects("Table1").Range.AutoFilter Field:=1, Criteria1:= _
Array("Person 14", "Person 10", "Person 3", "Person 4", "Person 5"), Operator:= _
xlFilterValues

Thank you,
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Welcome to the forum!

Try this

Code:
Sub Filter_Arrays()
  Dim arr() As Variant, arr1() As Variant, sh As Worksheet, c As Range, j As Long, existe As Boolean
  Set sh = ActiveSheet
  sh.ListObjects("Table1").Range.AutoFilter Field:=1
  ReDim arr(1 To sh.ListObjects("Table1").Range.Rows.Count)
[COLOR=#0000ff]  arr1 = Array("Person 14", "Person 10", "Person 3", "Person 4", "Person 5") [/COLOR][COLOR=#008000] 'Put here the people who will be out of the filter.[/COLOR]
  For Each c In sh.ListObjects("Table1").ListColumns(1).DataBodyRange
    existe = False
    For j = 0 To UBound(arr1)
      If arr1(j) = c.Value Then existe = True
    Next
    If existe = False Then arr(c.Row) = c.Value
  Next
  sh.ListObjects("Table1").Range.AutoFilter 1, arr, xlFilterValues
End Sub
 
Last edited:
Upvote 0
Bit long winded but should work:

Code:
arrFilterOut = Array("Person 14", "Person 10", "Person 3", "Person 4", "Person 5")
arr = ActiveSheet.ListObjects("Table1").ListColumns(1).DataBodyRange
With CreateObject("Scripting.Dictionary")
    For x = LBound(arr) To UBound(arr)
        If Not IsMissing(arr(x, 1)) And Len(arr(x, 1)) > 0 And IsError(Application.Match(arr(x, 1), arrFilterOut, 0)) Then
            .Item(arr(x, 1)) = 1
        End If
    Next
    arr = .keys
End With
ActiveSheet.ListObjects("Table1").Range.AutoFilter Field:=1, Criteria1:=arr, Operator:=xlFilterValues
 
Upvote 0
Thank you so much It works for me. I have one more question.
In my array list I also have blanks that I want to filter out
 
Upvote 0
Do you want blank cells to appear on the screen?

Then try this:

Code:
Sub Filter_Arrays()
  Dim arr() As Variant, arr1() As Variant, sh As Worksheet, c As Range, j As Long, existe As Boolean
  Set sh = ActiveSheet
  ReDim arr(1 To sh.ListObjects("Table1").Range.Rows.Count)
[COLOR=#ff0000]  arr(1) = ""[/COLOR]
  arr1 = Array("Person 14", "Person 10", "Person 3", "Person 4", "Person 5")
  For Each c In sh.ListObjects("Table1").ListColumns(1).DataBodyRange
    existe = False
    For j = 0 To UBound(arr1)
      If arr1(j) = c.Value Then existe = True
    Next
    If existe = False Then arr(c.Row) = c.Value
  Next
  sh.ListObjects("Table1").Range.AutoFilter 1, arr, xlFilterValues
End Sub
 
Upvote 0
Inside the column I am working in it has empty cells
I want to tell the array with the Array("Person 14", "Person 10", "Person 3", "Person 4", "Person 5")
also include blank cells because I want to filter out the blank cells also from what the options I select

Thank you,
 
Upvote 0
I figured it out I had to do this
Array("Person 14", "Person 10", "Person 3", "Person 4", "Person 5", " ")
add black space after last person
Thank you so much for your help I appreciate it
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,256
Members
448,558
Latest member
aivin

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