Good Afternoon,
I am using the VB below to create a date in a userform as dd/mm/yyyy
which is viewing ok on the userform.
The issue is when i submit the form the date is changing to american format in the spreadsheet it is being saved on. As i work for a company is there anyway i can make 100% sure the date is entered in the uk format for reporting information.
Many Thanks
I am using the VB below to create a date in a userform as dd/mm/yyyy
which is viewing ok on the userform.
The issue is when i submit the form the date is changing to american format in the spreadsheet it is being saved on. As i work for a company is there anyway i can make 100% sure the date is entered in the uk format for reporting information.
Code:
Today = Format(Now, "dd/mm/yyyy") 'date
Me.txtdate.Value = Today
Me.txtdate.Locked = True
Many Thanks