Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please how do convert this using an Excel macro:
06.01.2014 00:00:00 06.07.2014 00:00:00 TO: 06/01/2014 06/07/2014 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Am Wed, 13 Aug 2014 04:02:26 -0700 (PDT) schrieb sylink: 06.01.2014 00:00:00 06.07.2014 00:00:00 TO: 06/01/2014 06/07/2014 select your data = Format cells = and change the format to dd/MM/yyyy Regards Claus B. -- Vista Ultimate / Windows7 Office 2007 Ultimate / 2010 Professional |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Wednesday, August 13, 2014 12:09:33 PM UTC+1, Claus Busch wrote:
Hi, Am Wed, 13 Aug 2014 04:02:26 -0700 (PDT) schrieb sylink: 06.01.2014 00:00:00 06.07.2014 00:00:00 TO: 06/01/2014 06/07/2014 select your data = Format cells = and change the format to dd/MM/yyyy Regards Claus B. -- Vista Ultimate / Windows7 Office 2007 Ultimate / 2010 Professional Thanks for your response. I tried that earlier but it didn''t work. I am using Office 2010. I dont know if there is any other trick |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please how do convert this using an Excel macro:
06.01.2014 00:00:00 06.07.2014 00:00:00 TO: 06/01/2014 06/07/2014 Assuming subject cells are selected... In a standard module: Option Explicit Sub ConvertDateTimeToDateOnly() Dim rng For Each rng In Selection rng.Value = DateValue(Replace(rng.Value, ".", "/")) Next 'rng End Sub -- Garry Free usenet access at http://www.eternal-september.org Classic VB Users Regroup! comp.lang.basic.visual.misc microsoft.public.vb.general.discussion |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I determine the modification date of a cell? | Excel Worksheet Functions | |||
Formula for last modification date? | Excel Discussion (Misc queries) | |||
Modification Date | Excel Discussion (Misc queries) | |||
Last Modification Date | Excel Worksheet Functions | |||
Excel file modification date | Excel Discussion (Misc queries) |