So I'm trying this same code & it works for me, all the way to executing the changes from textbox back into the cell. Ay ideas? BTW, I'm on Excel 2011 for Mac & there were a few changes needed to keep the code working to that point. Here's my code:
Private Sub ListBox1_Click()
TextBox1.Value = ListBox1.Value
End Sub
Private Sub Texbox1_Change()
Dim rCell As Range
With ListBox1
Set rCell = Range(.List).Resize(1).Offset(.ListIndex)
rCell.Value = TextBox1.Value
End With
End Sub
Private Sub UserForm_Initialize()
ListBox1.ColumnCount = 1
ListBox1.List = [BHrange].Value
End Sub
Bookmarks