Can`t make my combo box fill in with only filtered values and unique values

Darren Smith

Well-known Member
Joined
Nov 23, 2020
Messages
631
Office Version
  1. 2019
Platform
  1. Windows
Afternoon all

Much value any help on this

This code below shows only 1 value returned there are 24 plus values it should return??

VBA Code:
Private Sub UserForm_Initialize()

Dim ws As Worksheet

Dim i As Long, Lastrow As Long, x As Long

With Me.WBase

    Set ws = ThisWorkbook.Worksheets("Quote Detail")
    Lastrow = ws.Cells(Rows.Count, 1).End(xlUp).Row
    
    For i = 2 To ws.Range("A" & Lastrow).End(xlUp).Offset(1, 5).Row
    x = Application.WorksheetFunction.CountIf(ws.Range("E" & 2, "E" & i), _
    ws.Cells(i, 5).Cells.SpecialCells(xlCellTypeVisible).Value)
    
    If x = 1 Then
    Me.WBase.AddItem ws.Cells(2, 5).Value
    
    End If
    
    Next i
    End with

End sub
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result

Forum statistics

Threads
1,214,377
Messages
6,119,182
Members
448,872
Latest member
lcaw

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