I have this code:
Private Sub Worksheet_Change(ByVal Target As Range)
ActiveWorkbook.FollowHyperlink " _
& Replace(Target.Value, " ", "+")
End Sub
Which provides directions from the office to the address found in cell B1. And it works in that it opens up the browser and displays the google page with directions and maps. What would be awesome is if the directions and maps from google could be placed back on the same sheet as cell B1 for printout. Is that possible?
Private Sub Worksheet_Change(ByVal Target As Range)
ActiveWorkbook.FollowHyperlink " _
& Replace(Target.Value, " ", "+")
End Sub
Which provides directions from the office to the address found in cell B1. And it works in that it opens up the browser and displays the google page with directions and maps. What would be awesome is if the directions and maps from google could be placed back on the same sheet as cell B1 for printout. Is that possible?