Hi
I have to convert a serial date into this specific format "m/d/yyyy" for an entire column. When I do it manually through Excel Format Cells / Custom and create "m/d/yyyy" is works. When I write VBA code to convert it, it doesn't work?
This is very frustrating, working with dates....
I have to convert a serial date into this specific format "m/d/yyyy" for an entire column. When I do it manually through Excel Format Cells / Custom and create "m/d/yyyy" is works. When I write VBA code to convert it, it doesn't work?
Code:
Columns("L:L").Select
Selection.NumberFormat = "m/d/yyyy"
This is very frustrating, working with dates....