redspanna
Well-known Member
- Joined
- Jul 27, 2005
- Messages
- 1,604
- Office Version
- 365
- Platform
- Windows
Hi all
How can I get the vale in my Textbox2 to be formatted as ddMmmyy?
thanks
Code:
Private Sub UserForm_Activate()
With Worksheets("database")
TextBox2 = .Cells(.Rows.Count, "b").End(xlUp).Value
End With
End Sub
thanks