Geocode the data and then print the output data set.
proc geocode /* Invoke geocoding procedure */ method=STREET /* Specify geocoding method */ data=WORK.CUSTOMERS /* Input data set of addresses */ out=WORK.GEOCODED /* Output data set with X/Y values */ lookupstreet=SASHELP.GEOEXM /* Primary street lookup data set */ attributevar=(TRACTCE00); /* Assign Census Tract to locations */ run; proc print data=WORK.GEOCODED noobs; var address m_addr m_zip m_obs _matched_ _status_ _notes_ _score_ x y tractce00; run;