+ Reply to Thread
Results 1 to 7 of 7

Formatting Lat/Long Info

Hybrid View

  1. #1
    Registered User
    Join Date
    11-27-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    4

    Question Formatting Lat/Long Info

    Hi there,

    Spanking new to the forum here, sorry if this isn't the right place to post. Figured this might be a VBA task...

    I need to reformat Lat Long data as follows:

    Source Cell contains, as an example:

    36 33 24.67849(N) 105 25 01.00930(W)

    I need to generate 2 cells with a format:

    36332468N and 105250101W

    Note the need to round the decimal seconds to 2 places, then remove the decimal point.

    I'm not much of a programmer, but would rather avoid brute forcing this by hand to avoid data entry errors.

    I appreciate the help, and if theres a better forum for this question, I'm all about reposting elsewhere. Thanks!

  2. #2
    Forum Contributor
    Join Date
    10-19-2012
    Location
    Omaha, Nebraska USA
    MS-Off Ver
    Excel 2010
    Posts
    249

    Re: Formatting Lat/Long Info

    Hi BeaconSlash,

    Here is a workbook with code in it that formats the Latitudes and Longitudes per your description. The source cells are in Column A, the formatted longitude is in Column B and the formatted latitude is put in Column C.

    Hope it helps,

    Dan
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    11-27-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    4

    Re: Formatting Lat/Long Info

    Hi there,

    When I open it, all I see is:

    Cell A1: 36 33 24.67849(N) 105 25 01.00930(W)
    Cell A2: 36 33 24.67849(S) 105 25 01.00930(E)

    And no forumulas to be seen.

  4. #4
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: Formatting Lat/Long Info

    UDF
    Use in cell like
    =LatLng(A1)

    Function LatLng(ByVal txt As String) As String
        With CreateObject("VBScript.RegExp")
            .Pattern = "(\d+(\.\d+)?)\(([NS])\)(\d+(\.\d+)?)\(([WE]).*"
            If .test(Replace(txt, " ", "")) Then
                txt = Replace(txt, " ", "")
                LatLng = .Replace(txt, Application.Round(Val(.Replace(txt, "$1")), 2) * 100 & _
                    "$3 and " & Application.Round(Val(.Replace(txt, "$4")), 2) * 100 & "$6")
            End If
        End With
    End Function
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    11-27-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    4

    Re: Formatting Lat/Long Info

    I admire how literal you were and apologize for not being more precise in my definition.

    Arbitrary cell (A1) containing 36 33 24.67849(N) 105 25 01.00930(W) must be converted to two separate arbitrary cells (A2 B2), where arbitrary A2 contains the Lat portion, and arbitrary B2 contains the Long portion.

    The VBA spits out appropriate values it seems. It feels like I would need one UDF like a =Lat(A1) and a =Lng(A1) to place in to separate cells.

  6. #6
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: Formatting Lat/Long Info

    Then

    C1:D1
    =LatLng(A1)
    Confirm with Ctrl + Shift + Enter (array formula entry)
    Function LatLng(ByVal txt As String)
        With CreateObject("VBScript.RegExp")
            .Pattern = "(\d+(\.\d+)?)\(([NS])\)(\d+(\.\d+)?)\(([WE]).*"
            If .test(Replace(txt, " ", "")) Then
                txt = Replace(txt, " ", "")
                LatLng = Split(.Replace(txt, Application.Round(Val(.Replace(txt, "$1")), 2) * 100 & _
                    "$3^" & Application.Round(Val(.Replace(txt, "$4")), 2) * 100 & "$6"), "^")
            End If
        End With
    End Function
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    11-27-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    4

    Re: Formatting Lat/Long Info

    Thank you very much for your help!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. shorten long if statement and add conditional formatting
    By Lirpaloof in forum The Water Cooler
    Replies: 7
    Last Post: 04-01-2014, 08:47 AM
  2. shorten long if statement and add conditional formatting
    By Lirpaloof in forum Excel General
    Replies: 7
    Last Post: 04-01-2014, 08:47 AM
  3. [SOLVED] =IF and =SUMIF formulas creating long long long data processing times.
    By comp in forum Excel Programming / VBA / Macros
    Replies: 32
    Last Post: 03-26-2014, 02:59 PM
  4. help with a formula to devide a long string of info
    By JUSTm in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-26-2013, 09:27 AM
  5. Charts formatting--long shot
    By amartino44 in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 01-22-2013, 07:57 PM
  6. Easy way to transpose address info from one long column into neatly sorted rows.
    By hhhava in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-28-2012, 03:26 AM
  7. [Urgent] Getting NetWare Info for Owner of File into Excel 2003 via VBA [Long Post]
    By Ettornio in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 11-18-2009, 01:08 PM

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