CHANGE TEXT DATE TO NUMERIC DATE
This little macro might work (or not, date math is very vulnerable to
regional settings). Select the cells in question and run this:
Sub test()
Dim Cel As Range
On Error Resume Next
For Each Cel In Intersect(Selection, ActiveSheet.UsedRange)
Cel.Value = DateValue(Cel.Value) + TimeValue(Cel.Value)
Next
End Sub
HTH. Best wishes Harald
"slf" wrote in message
...
The following imported data isn't recognized as a dates:
Jul 4 2008 6:30AM
Jun 22 2007 5:59PM
I have tried both of these formulas found elsewhere in the Excel Community
without luck:
=DATE(RIGHT(A1,4),LEFT(A1,LEN(A1)-6),MID(A1,LEN(A1)-5,2))
=TEXT(TEXT(A1,"00000000"),"00-00-0000")+0
.......................
I need the month and year only, text to columns work but requires the data
to be copied elsewhere first.
using "=left" function can provide the month, but the placement of the
year
varies by 1 character in the middle of the cell, so "=mid" can't be
utilized.
I have used "=trim" function and tried the "=Datevalue" function also.
Any suggestions?
|