Wouldn't it be useful if...

google earth? er no....sorry routemaster... UK only best solution buy a map :LOL:
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
I have been trying to do this and there is a couple ways to do it but they are way too complicated, does anyone have a simple solution?
 
If you have 2 lat/lon points, you can use the formula below. Everything I have found shows that it is reliably accurate. Of course there is probably some variable that needs to be accounted for that makes it perfect, but this works well enough for my purposes:

Code:
=ACOS(COS(RADIANS(90-Lat1))    *COS(RADIANS(90-Lat2))   +SIN(RADIANS(90-Lat1))    *SIN(RADIANS(90-Lat2))   *COS(RADIANS(Long1-Long2)))*3958.756
 
What I would really like to see is the ability to enter the two zip codes, plus a third cell with a brief description of my urologists diagnosis of my kidney-bladder functions, and have Excel calculate how many pit stops will be needed on the journey. Then, upload it to Mapquest and have it show little urinal icons at all the available Dunkin' Donuts along the route.
Possibly the most useful function ever suggested. Although urinals fail me due to anatomical differences.
 
Possibly the most useful function ever suggested. Although urinals fail me due to anatomical differences.

At the risk of being the one to "go there"; maybe you've just gotta ... Nah, on second thoughts, I'll just let that go. :)
 
i wrote a function that does what you want using the googlemaps API. its fast and accurate for actual road distance rather than lat/long triangulation
 
Well I found this, I didn't write it but it works. its in KM but that is an easy conversion if you want Miles.

You need to enable the Reference; In VBA Tools/Reference Select "Microsoft XML,V6.0"

in Cell say C1 use
Code:
=G_Distance(A1,B1)
< type the address or zip to/from in A1 and B1.

Code:
Function G_DISTANCE(Origin As String, Destination As String) As DoubleDim myRequest As XMLHTTP60
Dim myDomDoc As DOMDocument60
Dim distanceNode As IXMLDOMNode
    G_DISTANCE = 0
    On Error GoTo exitRoute
    Origin = Replace(Origin, " ", "%20")
    Destination = Replace(Destination, " ", "%20")
    Set myRequest = New XMLHTTP60
    myRequest.Open "GET", "http://maps.googleapis.com/maps/api/directions/xml?origin=" _
        & Origin & "&destination=" & Destination & "&sensor=false", False
    myRequest.send
    Set myDomDoc = New DOMDocument60
    myDomDoc.LoadXML myRequest.responseText
    Set distanceNode = myDomDoc.SelectSingleNode("//leg/distance/value")
    If Not distanceNode Is Nothing Then G_DISTANCE = distanceNode.Text / 1000
exitRoute:
    Set distanceNode = Nothing
    Set myDomDoc = Nothing
    Set myRequest = Nothing
End Function

I believe this can be modified to find public bathrooms.
 
I for one would find such a function useful.

I'm happy to use Google maps to find the road distance between two places.

But from time to time I've needed to get data for many different journeys, and some function like this would save alot of time over looking them up individually on Google.

Diddi - would you care to share your method ?

mnordeen - I tried your solution but couldn't get it to work.
I'm using Excel 2007.
I'm afraid I'm not hot on VBA or UDFs, but I copied your code exactly as is, into a standard module, and the very first line is highlighted in red, I think it's having a problem with the "...my request..." section.
Any ideas ?

If I can get mnordeen's proposal to work, I am confident that I could get it to work repetitively for a long list of journeys.
 
Gerald,
Did you enable the reference?
Open excel, open VBA then from the tool bar at the top (Tools)/(Reference Select) "Microsoft XML,V6.0"
I have it working on 2003 and 2007, it works like a champ.. B>)
 

Forum statistics

Threads
1,215,332
Messages
6,124,314
Members
449,153
Latest member
JazzSingerNL

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top