behrensf84
New Member
- Joined
- Dec 31, 2014
- Messages
- 9
Hi, does anyone know how to link a cell value to what is typed in to a text box? what I need is to be able to type into a text box, and then have the cell value update automatically. thanks
Sub TextBox1_LostFocus()Dim sValue As String
sValue = Sheets("Sheet1").TextBox1.Value
With Sheets("Sheet1")
.Cells(1, 1).Value = sValue
End With
End Sub