BookmarkSubscribeRSS Feed
SteveNZ
Obsidian | Level 7

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

1 REPLY 1
SteveNZ
Obsidian | Level 7

Dont worry, I figured it out. Proc Report builds from left to right so moving the northings and eastings to the left of address in the column statement fixed the problem.

That's a very easy solution to a problem I spent a very long time trying to solve!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 905 views
  • 0 likes
  • 1 in conversation