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

Does zipcitydistance(zip1, zip2)    calculate only 5 digit zip code ?

I need to calculate the distance between two 9 digit zipcodes.

 

when I ran the 9 digits zipcode to calculate the distance, the log shows error "

NOTE: Invalid argument to function ZIPCITYDISTANCE('006460000','010133140') at line 28 column 13."

data _null_;

distance=zipcitydistance('006460000', '010133140');

put   ' distance 8. ' miles';

run;

 

Can someone share how to calculate the distance between 9 digit zip codes?

 

Thanks

 

1 ACCEPTED SOLUTION

Accepted Solutions
andreas_lds
Jade | Level 19

The function zipcitydistance uses sashelp.zip (as documented) and that dataset contains only the five digit zip codes. So you need another function and data-source to calculate distances. Proc geocode could be used here, you want to read the documentation.

View solution in original post

1 REPLY 1
andreas_lds
Jade | Level 19

The function zipcitydistance uses sashelp.zip (as documented) and that dataset contains only the five digit zip codes. So you need another function and data-source to calculate distances. Proc geocode could be used here, you want to read the documentation.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1 reply
  • 1235 views
  • 0 likes
  • 2 in conversation