Hello all!
I want a macro that helps find the input of a Combobox (given by de user) on a column of excel until the cell has not just that input.
For example if the given input is "1943" and the cell contains "1943 3302"
For instance I just have this
For i = 2 To 580
If Cells(i, 8) = ComboBox1.Value Then
TextBox1.Value = Cells(i, 7)
TextBox2.Value = Cells(i, 9)
TextBox3.Value = Cells(i, 11)
End If
Next
But I don't know what to change, I know the equal "=" is what doesn't allow to match just a part of the cell value.
I hope you can help me.
Thank you
Bookmarks