+ Reply to Thread
Results 1 to 6 of 6

Change date formats using a macro 01.23.11

Hybrid View

  1. #1
    Registered User
    Join Date
    01-23-2011
    Location
    Devon,UK
    MS-Off Ver
    Excel 2003
    Posts
    3

    Question Change date formats using a macro 01.23.11

    Hi: I need to change date formats in imported report data. They are lists of dates in columns punctuated by full stops (or periods). The macro I found replaces . with / which works, but messes up any numeric data using decimal places, turning them into date formats.

    I know I can use find and replace to do this, but as every report needs this attention I assume a macro would be faster, when several columns might be affected, any help would be greatly appreciated. Thank you.

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Change date formats using a macro 01.23.11

    Presumably these period delimited dates are presently showing as Text strings rather than as true Dates (numbers) ?

    Sub Example()
        Dim rngData As Range
        With Sheets("Sheet1")
            On Error Resume Next
            Set rngData = .UsedRange.SpecialCells(xlCellTypeConstants, xlTextValues)
            On Error GoTo 0
            If Not rngData Is Nothing Then
                Intersect(rngData, .Range("A:A,C:C,F:G")).Replace ".", "/"
            End If
            Set rngData = Nothing
        End With
    End Sub
    modify to suit but in principle above would adjust text strings within columns A:C, F & G on Sheet1 replacing . with /
    (there are restrictions regards number of areas specialcells can work with)

  3. #3
    Registered User
    Join Date
    01-23-2011
    Location
    Devon,UK
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Change date formats using a macro 01.23.11

    Thank you that is brilliant! Should I be able to choose the column labels via an input message box, if I work on it, or is there an even better way of doing the same thing, without affecting the numeric data. I am only querying this I as think that find and replace on multiple columns works pretty quickly too? Thanks again.

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Change date formats using a macro 01.23.11

    Quote Originally Posted by SAP_hostage View Post
    Thank you that is brilliant! Should I be able to choose the column labels via an input message box, if I work on it, or is there an even better way of doing the same thing
    You could use Selection or Application.InputBox (type:=8) if you prefer to select the ranges manually at run time.

    Quote Originally Posted by SAP_hostage
    ...without affecting the numeric data.
    As stated numbers are ignored (even if they reside within the selected range)

  5. #5
    Registered User
    Join Date
    01-23-2011
    Location
    Devon,UK
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Change date formats using a macro 01.23.11

    I have found a problem with this macro in practice as dates such 01.05.2011 are returned as 05/01/2011 and vice versa 05.01.2011 would return as 01/05/2011. Is there something thn can cure this problem please, it is that annoying American format, I am guessing?

  6. #6
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Change date formats using a macro 01.23.11

    Can you post a sample file with a variety of dates in place as you receive them ?

    Also could you please confirm your Regional Settings - as specified in Windows Control Panel.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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