BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mauri0623
Quartz | Level 8


SAS_M  SAS_F
myzip  facility_zip    
22180  33180
22181  33181
22182  33182
22183  33183
22184  .....
22185  numobs=270 zip codes
22186
22187
22188
22189
22190
.....
.....
.....
numobs=3000 zip codes

 

SAS_M and SAS_F are two SAS datasets each containing only a column of zip. SAS_M has 3000 rows and SAS_F has 270 rows.
ZIPCITYDISTANCE function works fine for a pair of zips. I need some sort of looping that can do the followings,

ZIPCITYDISTANCE(22180,33180) then
ZIPCITYDISTANCE(22180,33181) then
ZIPCITYDISTANCE(22180,33182) then
ZIPCITYDISTANCE(22180,33183) then
ZIPCITYDISTANCE(22181,33180) then
ZIPCITYDISTANCE(22181,33181) and soforth.
............................

As said the ZIPCITYDISTANCE function works fine when you only have a pair of zips. In my case I need the distance between
first zip from SAS_M to every row of zip in the SAS_F dataset and then the second zip from the SAS_M to every zip rows of
SAS_F dataset and soforth.

Thank you for your help.
* ZIPCITYDISTANCE function;
 d1 = zipcitydistance(12203,27513);

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

SQL should do it:

proc sql;
create table want as
select
  a.myzip,
  b.facility_zip,
  zipcitydistance(a.myzip,b.facility_zip) as distance
from sas_m a, sas_f b;
quit;

as it automatically creates a cartesian join.

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

SQL should do it:

proc sql;
create table want as
select
  a.myzip,
  b.facility_zip,
  zipcitydistance(a.myzip,b.facility_zip) as distance
from sas_m a, sas_f b;
quit;

as it automatically creates a cartesian join.

mauri0623
Quartz | Level 8

Thank you. I will try.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

If you need all rows of the second calculated against the rows from the first, them merge 1 to many:

data want;
  merge myzip (in=a) facility_zip (in=b;
  if a;
  diff=zipdistance(myzip,facility_zip);
run;

Note, not tested, post test data in the form of a datastep, and show required output.  We are not here to type this in for you!

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

Register now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 3 replies
  • 1913 views
  • 3 likes
  • 3 in conversation