Your Dropbox link doesn't seem to work. Perhaps you can clear the listfillrange and use the List instead:
Sub ComboBox1_Change()
With ThisWorkbook.Worksheets("Projects")
ComboBox1.List = .Range("DynamicList").Value
ProjDesc.Value = Application.VLookup(ComboBox1.Value, .Range("C2:T1000"), 3, 0)
TextBox1.Value = Application.VLookup(ComboBox1.Value, .Range("C2:T1000"), 5, 0)
TextBox2.Value = Application.VLookup(ComboBox1.Value, .Range("C2:T1000"), 6, 0)
TextBox3.Value = Application.VLookup(ComboBox1.Value, .Range("C2:T1000"), 7, 0)
End With
End Sub
although I'm not sure why you want to change the list after selecting a value from it?
Bookmarks