Hi,
I created textbox in userform and added date
I created textbox in userform and added date
manually. When I press command button it automatically copying date information to the sheet. Can I select date automatically from the userform and click appropriate date and select? please see below my code:
Thanks in advance
Code:
Dim iRow As Long
Dim ws As Worksheet
Set ws = Worksheets("Sheet1")
ws.Cells(iRow, 1).Value = Me.textbox_data.Value
Thanks in advance