Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Excel VBA to convert "dd.MM.yy" text to "dd/MM/yyyy" format da

Seeing as VBA doesnt handle non-US date formats in this instance, and taking
up ward376's suggestion, I will use the following:

Dim RecordCounter As Long ' Number of Records to be Processed
RecordCounter = 15 ' Including Header
' Reformat dd.MM.yy dates in column F into dd/MM/yyyy Excel dates in column
C via column E
Range("F1").Copy Destination:=Range("E1") ' Copy Header
Dim i As Long
For i = 2 To RecordCounter ' Fill in with Excel formulae
Range("E" & i).FormulaR1C1 = _

"=DATEVALUE(CONCATENATE(LEFT(RC[1],FIND(""."",RC[1])-1),""/"",MID(RC[1],(FIND(""."",RC[1])+1),((FIND(""."",RC[1],(FIND(""."",RC[1])+1))-(FIND(""."",RC[1])+1)))),""/"",RIGHT(RC[1],LEN(RC[1])-FIND(""."",RC[1],FIND(""."",RC[1])+1))))"
Next i
Columns("E:E").NumberFormat = "dd/mm/yyyy;@" ' Format the column
Columns("E:E").Copy ' Copy Values (lose the formulae) and Formats
Columns("C:C").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks:=False, Transpose:=False
Columns("C:C").PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone,
SkipBlanks:=False, Transpose:=False

It's a bit "intense" but it does the job.

Thanks for all your help.

Paul J
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
convert text "20100315" to date format Terry0928 Excel Discussion (Misc queries) 11 April 6th 10 02:11 AM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
how i convert "100" to "hundred"( number to text) in excel-2007 mohanraj Excel Worksheet Functions 1 May 11th 08 09:07 PM
Convert text "date" (DDMMMYY) to datetime value of YYYY-MM-DD - ho j.a. harriman Excel Discussion (Misc queries) 7 March 29th 07 01:20 AM
Option Explicit and Date Format "dd mmm yyyy"? Rob van Gelder[_4_] Excel Programming 11 November 10th 04 10:13 PM


All times are GMT +1. The time now is 03:46 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"