May 23, 2002 #1 SgtPepps IS-IT--Management May 1, 2002 109 GB I have a cell with the date In Day/Month/Year format but when its transferred to a userform: Userform.TextBox.Value = Activecell.Value It converts the date to Month/Day/Year. How can I stop this? Regards Sgtpepps
I have a cell with the date In Day/Month/Year format but when its transferred to a userform: Userform.TextBox.Value = Activecell.Value It converts the date to Month/Day/Year. How can I stop this? Regards Sgtpepps
May 23, 2002 1 #2 Loomah Technical User Mar 4, 2002 1,911 IE Hello Sarge try this to reformat UserForm1.TextBox1.Value = Format(Sheets(1).[a1].Value, "dd/mm/yyyy" ;-) Upvote 0 Downvote
Hello Sarge try this to reformat UserForm1.TextBox1.Value = Format(Sheets(1).[a1].Value, "dd/mm/yyyy" ;-)
May 23, 2002 Thread starter #3 SgtPepps IS-IT--Management May 1, 2002 109 GB Excellent cheers! Upvote 0 Downvote