Results 1 to 3 of 3

Multiple Date Formats

Threaded View

  1. #1
    Registered User
    Join Date
    08-05-2022
    Location
    kuwait
    MS-Off Ver
    10
    Posts
    1

    Multiple Date Formats

    Dear All,

    I receive data in different date formats( dd/mm/yyyy hh:mm:ss, dd-mm-yyyy hh:mm:ss.....etc date, text mixed formats). I want final output should be in mm/dd/yyyy hh:mm:ss

    Below macro (not written by me) only does part of the job. I have attached the excel file. Column B highlighted in red is not converted as expected. I want date to be converted as in column C (i.e: mm/dd/yyyy hh:mm:ss)

    Sub a1105914a()
    Dim va, x
    Dim i As Long, c As Range, z As String
    With Range("A5", Cells(Rows.Count, "A").End(xlUp))
    va = .Value
    For i = 1 To UBound(va, 1)
        x = va(i, 1)
        z = CStr(Format(x, "Short Time"))
        If Left(x, 2) < 13 Then
        va(i, 1) = Format(DateSerial(Year(x), Day(x), Month(x)), "dd-mm-yy") & " " & z
        Else
        va(i, 1) = CDate(x)
        End If
    Next
    .Value = va
    .NumberFormat = "mm/dd/yyyy hh:mm:ss"
    .HorizontalAlignment = xlRight
    End With
    End Sub
    PC time format is mm/dd/yyyy

    Please any one help me,
    Attached Files Attached Files
    Last edited by AliGW; 08-06-2022 at 06:04 AM. Reason: Code tags added.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Data from multiple date formats
    By nagesh.tvsr in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 07-06-2022, 02:04 PM
  2. [SOLVED] Multiple Date Formats
    By leebird in forum Excel Formulas & Functions
    Replies: 12
    Last Post: 09-29-2016, 04:14 PM
  3. Multiple date formats need to be converted
    By foamcows in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-14-2011, 01:25 PM
  4. How to change multiple date formats in same column
    By muchado in forum Excel General
    Replies: 6
    Last Post: 11-10-2010, 01:37 AM
  5. Adjust multiple date formats
    By Armitage2k in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-09-2009, 10:01 PM
  6. Multiple date formats to 1
    By somesoldiers in forum Excel General
    Replies: 6
    Last Post: 07-29-2009, 12:16 PM
  7. [SOLVED] Multiple Date/Time Formats
    By colin in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-07-2005, 07:05 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1