Format Date

mouse88

Board Regular
Joined
May 24, 2011
Messages
148
I am using the following code to get dates from text boxes in to my spreadsheet:

Code:
Range("rngDateFromDisplay").Value = Format(tbDateFrom.Text, "Short Date")
Range("rngDateToDisplay").Value = Format(tbDateTo.Text, "Short Date")

For some reason one of them comes out in the correct UK format and the other comes out in the US format. See below screen shot.

I have check the formatting of the two cells and their both set to DD/MM/YYY with UK locale so I can't understand why the top one comes out wrong.

Any Ideas?
Thanks
Matt

2ic17w8.png
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
VBA dates are US-centric. Try

Code:
Range("rngDateFromDisplay").Value = Format(tbDateFrom.Text, "dd/mm/yy")
 
Upvote 0
Same result again unfortunately.

Seems strange because one is correct and the other isn't but im doing exactly the same with both.
 
Upvote 0
Try

Code:
With Range("rngDateFromDisplay")
    .NumberFormat = "dd/mm/yy"
    .Value = DateValue(tbDateFrom.Text)
End With
 
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,836
Members
452,947
Latest member
Gerry_F

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top