Forum Discussion
jsamodeo
Sep 08, 2021Copper Contributor
Changing the format of 10,000 dates
Hello, I need help changing the values of these dates from mm/dd/yyyy to dd/mm/yyyy. I have already tried changing the format via the ctrl 1 format cells method. This seems to get new dates in the ri...
NikolinoDE
Sep 24, 2021Gold Contributor
Here is a suggestion with VBA (untested).
Should actually work.
Build a button into the sheet and let it run whenever you want ... is just a suggestion :)).
Sub Datechange()
Range("C1:C10000").NumberFormat = "dd/mm/yyyy"
End Sub
Hope I was able to help you with this info.
NikolinoDE
Was the answer useful? Mark them as helpful!
This will help all forum participants.
Juliano-Petrukio
Sep 24, 2021Bronze Contributor
As was told before, it doesn't change because the regional settings of the computer.
You can change the view on the spreadsheet but if you click on the formula bar the date will be like was setup on regional settings.