+ Reply to Thread
Results 1 to 2 of 2

Set Filter Equal to ListBox Selection

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    02-04-2014
    Location
    Florida, United States
    MS-Off Ver
    Excel 2010, Excel 2013
    Posts
    366

    Set Filter Equal to ListBox Selection

    Dim i As Integer
    Dim Counter As Integer
    For i = 0 To CustomerLookupUserForm.OEMCustomerListBox.ListCount - 1
        If CustomerLookupUserForm.OEMCustomerListBox.Selected(i) Then
            Counter = Counter + 1
            Sheets("Lookup").PivotTables(1).PivotFields("Select Customer").CurrentPage = i
            Call MailOEM
        End If
    Next i
    The code above sets the PivotTable Filter to the Index #. As I only have one choice selected, the Index # is 0. However, I want it to be set to the value that Index # 0 is. In other words, the first list item in the ListBox is "GreenDog", how do I I change
    Sheets("Lookup").PivotTables(1).PivotFields("Select Customer").CurrentPage = i
    to equal what the text of the choice is, rather than its Index #?
    Thank You,

    EnigmaMatter

  2. #2
    Forum Contributor
    Join Date
    02-04-2014
    Location
    Florida, United States
    MS-Off Ver
    Excel 2010, Excel 2013
    Posts
    366

    Re: Set Filter Equal to ListBox Selection

    I solved my own question.

     Sheets("Lookup").PivotTables(1).PivotFields("Select Customer").CurrentPage = CustomerLookupUserForm.OEMCustomerListBox.List(i)

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Problems with filter from selection in listbox
    By thmsjlmnt in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-16-2013, 04:34 PM
  2. [SOLVED] Indexing proper range in listbox depending on selection in previous listbox
    By bloodmeat in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-02-2013, 02:31 PM
  3. Replies: 12
    Last Post: 08-28-2012, 07:09 AM
  4. Listbox multi selection filter
    By ahmad123 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-13-2011, 11:02 AM
  5. Multi select Listbox Items selection based on other Listbox item selection.
    By srinivassathi in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-20-2011, 05:53 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1