I have a combo box that I have created.

When one of my users pulls the drop down to place an item into a cell, how
do I tell the Click Event to move the person's cursor to column W (or C23)
before placing the item they chose?

Here is my current vb code:

Private Sub ComboBoxForemen_Click()
ActiveCell.Value = ComboBoxForemen.Value
ComboBoxForemen.Value = "Foremen List"
ActiveCell.Select
ActiveCell.Offset(1, 0).Select
End Sub

Thanks so much. Tofer