Search the site...

SASCRUNCH TRAINING
  • Home
  • Member's Area
  • How to Start
  • SAS Interface
  • Creating a Data Set
  • Practical SAS Training Course
  • SAS Certified Specialist Training Program
  • Proc SQL Course
  • Introduction to Time Series Analysis
  • SAS Project Training Course
  • Full Training / Membership
  • Sign up
  • About us
  • Contact us
  • Home
  • Member's Area
  • How to Start
  • SAS Interface
  • Creating a Data Set
  • Practical SAS Training Course
  • SAS Certified Specialist Training Program
  • Proc SQL Course
  • Introduction to Time Series Analysis
  • SAS Project Training Course
  • Full Training / Membership
  • Sign up
  • About us
  • Contact us
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:
Picture

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.
Next
Already a member? Go to member's area.