Results 1 to 5 of 5

Fastest way to match longitutdes and latitudes, thousands of data points

Threaded View

Oredigger90 Fastest way to match... 08-28-2012, 11:56 AM
MarvinP Re: Fastest way to match... 08-28-2012, 12:03 PM
Oredigger90 Re: Fastest way to match... 08-28-2012, 12:54 PM
Cutter Re: Fastest way to match... 08-28-2012, 02:05 PM
Oredigger90 Re: Fastest way to match... 08-29-2012, 05:07 PM
  1. #3
    Registered User
    Join Date
    08-27-2012
    Location
    Omaha, NE
    MS-Off Ver
    Excel 2010
    Posts
    57

    Re: Fastest way to match longitutdes and latitudes, thousands of data points

    My formula was the following, but will not run quickly so I will try your solution:

    Sub Matching()
    
    Dim rows1 As Long, rows2 As Long, i As Long, j As Long, result As Boolean
    
    rows1 = Range("B" & Rows.Count).End(xlUp).Row
    
    rows2 = Range("L" & Rows.Count).End(xlUp).Row
    
    
    i = 1
    j = 1
    
    For i = 1 To rows1
    
    For j = 1 To rows2
    
    
    
        If (Range("B" & i).Value = Range("L" & j).Value) And (Range("C" & i).Value = Range("M" & j).Value) Then
        result = True
        Range("I" & i).Value = result
        Range("S" & j).Value = result
       End If
     
    Next j
    
    Next i
    
    
    
    End Sub
    'Also, I was wondering if VLOOKUP would be a viable solution? I haven't used it and don't really know how, but I will try. I have also posted some example data, only the matching latitudes and longitudes should be copied into a separate sheet next to eachother.
    Attached Files Attached Files
    Last edited by Cutter; 08-28-2012 at 02:04 PM. Reason: Added code tags

Thread Information

Users Browsing this Thread

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

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