That's simple; clear the combo box before populating it then, e.g. :Originally Posted by U_Shrestha
[vba] Private Sub Worksheet_Activate()
With ComboBox1
.Clear
.AddItem "Active Issues 0 to 30 days old"
'Etc...
End With
End Sub[/vba] In this way, the combo box will not continue appending items to the bottom.
As for the rest, check out the attachment. Too lengthy to type all out here.