Results 1 to 10 of 10

VBA pulling unique results into combobox in userform

Threaded View

  1. #1
    Registered User
    Join Date
    11-25-2015
    Location
    Manitoba
    MS-Off Ver
    2016
    Posts
    36

    VBA pulling unique results into combobox in userform

    All,

    I am having a problem getting the unique values from a pivot table in combobox (cbMU) based on list chosen from combobox 1 (cbTOG)

    right now the codes work for populating both comboxes but the 2nd combobox fills with all the values for MU instead of the unique ones associated to the list in cbTOG
    For example:
    cbTOG has values like 69, 70, 100, 111, 112, 312, 631, 812, 900 and so one
    cbMU has values like 100, 118, 124, 615, 812, 312, and so one

    If I chose under cbTOG the value 69, then cbMU should have 615.
    If I chose under cbTOG the value 113, then cbMU should show 111, 113, 131

    code that fills the combobox 1 aka cbTOG:
    Private Sub UserForm_Initialize()
    
    Unload ufLoader
    
     Dim pvtTable As PivotTable
     Dim vData As Variant
     Dim sheet As Worksheet
     Dim pt As PivotTable
     Dim ptField As PivotField
     Dim item As PivotItem
     Dim index As Integer
     
     Set sheet = ThisWorkbook.Worksheets("Combined")
         Set pt = sheet.PivotTables("TOGPivot")
    
            Set ptField = pt.PivotFields("TOG")
                
                    index = 1
                     For Each item In ptField.PivotItems
                         Me.cbTOG.AddItem item.Name
                     Next item
                    Me.cbTOG.AddItem "(All)"
         Set ptField = Nothing
    
     End Sub
    the userform initialize fills cbTOG correctly

    Private Sub cbTOG_Change()
    
    Dim sheet As Worksheet
    Dim pt As PivotTable
    Dim ptField As PivotField
    
     Set sheet = ThisWorkbook.Worksheets("Combined")
         Set pt = sheet.PivotTables("TOGPivot")
         Set ptField = pt.PivotFields("MU")
    
                    For Each item In ptField.PivotItems
                         Me.cbMU.AddItem item.Name
                    Next item
    
    
                     Me.cbMU.AddItem "(All)"
    
         Set ptField = Nothing
    
    End Sub
    the cbTOG_change populates with the MU numbers but when I choose one of the TOG numbers the MU numbers do not change,
    I don't receive an error either so the code populates both but the cbMU needs to populate with results like what i referred to in the values example.

    I have a photo of what is in the pivot table for reference. can anyone tell me what I am missing in my code?
    I know I may have to supply the workbook but that may take a bit for me to slim it down to what I can divulge since it has company data that I cannot share so if asked I will try and supply a working sample but I will also haev to remove many pieces of code that are used in multiple sheets already.

    If it helps; the pivot table pulls data from the same sheet called 'combined' and the TOG values are in column H and the MU values are in column I
    Last edited by bbqqsmokeman; 09-17-2017 at 07:43 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Userform ComboBox to dinamically populate results basis of another combobox
    By rlh in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-05-2017, 06:27 PM
  2. Userform - dependent combobox to select worksheet to return search results and data change
    By ThePeoplesClub in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 11-29-2016, 01:27 PM
  3. [SOLVED] Unique Values in Combobox in Userform
    By nKife in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-17-2015, 07:45 PM
  4. [SOLVED] Unique items in combobox on userform
    By YasserKhalil in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 08-16-2015, 09:31 AM
  5. [SOLVED] Depanted combobox and results in a textbox, in a UserForm.
    By MariaPap in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-02-2013, 08:17 AM
  6. Userform: Unique Values to ComboBox
    By dinosaur1993 in forum Excel Programming / VBA / Macros
    Replies: 17
    Last Post: 09-21-2013, 03:09 AM
  7. Replies: 17
    Last Post: 10-14-2012, 11:15 AM

Tags for this Thread

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