Inserting Formala in a Userform TextBox
Posted by Adrian Williams on March 31, 2001 6:39 PM
I am trying to have a textbox return the contents of a cell and I need to use a formula to return the value. I am using
Private Sub ComboBox1_Change()
UserForm1.TextBox1.SetFocus
UserForm1.TextBox1.Value = VLookup(Lookup, Table, 3, False)
End Sub
An the VBE won't allow this, can anybody help?