A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
What exactly are you trying to do.
If it's just displaying an image from Google Maps in an Excel Workbook use Snagit from www.techsmith.com to capture the part of the map that you want and then copy it from the Snagit editor and paste it into Excel.
To call Google Maps from an address in cells A2, B2, C2 containing Street, City, State using a macro, use:
Sub GetGoogleMaps()
Dim r As Long
Dim strURL As String
r = 2 ' change in your code if the address is in some other row.
strURL = "http://maps.google.com/maps?q="
strURL = strURL & Replace(Range("A" & r), " ", "+")
strURL = strURL & "+" & Replace(Range("B" & r), " ", "+")
strURL = strURL & "+" & Replace(Range("C" & r), " ", "+")
ActiveWorkbook.FollowHyperlink strURL
End Sub