Private Sub ComboBox1_Change()
If ComboBox1.ListIndex > -1 Then Application.Goto Rows(4).Find(ComboBox1, , xlValues, xlWhole).Offset(-3), True: ActiveCell(4).Select
End Sub
Private Sub CommandButton1_Click()
Unload Me
End Sub
Private Sub UserForm_Initialize()
Dim i%, x$, j%
Sheets("BdD CEO").Activate
For i = 1 To 50
x = "Lot_" & Format(i, "00")
j = Application.Match(x, Rows(4), 0)
If Columns(j).Hidden Then Exit For
ComboBox1.AddItem x
Next
End Sub