Geo-targeting Project [21-25]

The list of postcodes must be exported to a csv file for the marketing team.

This can be done using Proc Export.

proc export data=target_postcode
   outfile='/folders/myfolders/Geo-targeting/output/target_postcode.csv'
   dbms=csv
   replace;
run;

Did the code fail?

Copy and run the code below to create the input data sets.

The file is exported to a csv file in the output folder:

Note: the file is exported to the OUTPUT folder, not the DATA FILES folder. Both folders are in the ‘Geo-targeting’ folder that you downloaded at the beginning of this project.