Hello, could do with a little help with this one.
I have a series of Textboxes, combo boxes and date boxes on a work sheet creating a user form. I want the values entered by the user to copy to another cell on the worksheet. For the textboxes and combo boxes I have been using the following macro:
Private Sub TextBox10_Change()
Sheets("Add New Cus").Range("AS4").Value = TextBox10.Value
End Sub
This has been successful. I am having trouble though with the LDDate1 and LDDate2 boxes, what would the equivalent macro for these be?
(The worksheet name is "Add New Cus")
Thanks!
Bookmarks