Hi all,
I am trying to create a hyperlink to Google Maps for my addresses that I'm outputting to Excel via the ExcelXP tagset. The first part of the link turns up ie the maps.google.com part but not the northing and eastings. I've googled the problem but can not find the answer, can someone please help?
proc report data = address_history nowd ;
column party_id address startdt enddt latlong_northing latlong_easting ;
define party_id / 'Client ID' ;
define address / 'Address' group ;
define startdt / 'Start' format = ddmmyy10. ;
define enddt / 'End' format = ddmmyy10. ;
define latlong_northing / group noprint ;
define latlong_easting / group noprint ;
compute address ;
urlstring = cats('http://maps.google.com/?q=',latlong_northing,',',latlong_easting) ;
call define(_COL_, 'URL', urlstring);
endcomp;
run ;
Many thanks in advance
regards
Steve