Does anyone know a macro so I can run it through Excel to change the whole spreadsheet date format from American to English?

link|improve this question
feedback

migrated from stackoverflow.com Dec 12 '09 at 15:11

This question came from our site for professional and enthusiast programmers.

2 Answers

Sub enFormat()    
Sheets("Sheet1").Cells.NumberFormat = "dd/mm/yyyy"    
End Sub
link|improve this answer
feedback

Select the cells you want to change, open their format dialog (on old versions it was Ctrl+1) and change it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown