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

Hi all, I want to export multiple csv files (by gender) from one sas dataset. My code below works to create the files, however I can't figure out how to keep the column names in the exported files. Please help!

Note: I am using the sashelp.class dataset for my code below

 

data _null_;
  set class;
  length fv $ 200;
  fv = "C:\Users\abi\Desktop\Output" || TRIM(put(sex,4.)) || ".csv";
  file write filevar=fv dsd dlm=',' lrecl=32000;
  put (_all_) (:);;
run;
1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Is the source data sorted by the variable used to split?

If so use BY group processing to decide when to write the header row.

%let path=%sysfunc(pathname(work));

proc sort data=sashelp.class out=class;
  by sex;
run;

data _null_;
  set class;
  by sex ;
  fv=cats("&path/",sex,'.csv');
  file csv filevar=fv dsd ;
  if first.sex then put "NAME,SEX,AGE,HEIGHT,WEIGHT";
  put (_all_) (+0);
run;

Otherwise create the files with the header rows first then use the MOD option on the FILE statement in your step that writes the data lines.

proc contents data=class noprint out=names(keep=varnum name label);
run;

proc sql;
create tables headers as 
  select distinct a.*,cats("&path/",b.sex,'.csv') as fv 
  from names a 
     , class b
  order by fv, varnum
;
quit;

data _null_;
  set headers;
  file out dsd filevar=fv ;
  put name @ ;
run;

data _null_;
  set class;
  fv=cats("&path/",sex,'.csv');
  file csv filevar=fv dsd mod;
  put (_all_) (+0);
run;

 

View solution in original post

2 REPLIES 2
Tom
Super User Tom
Super User

Is the source data sorted by the variable used to split?

If so use BY group processing to decide when to write the header row.

%let path=%sysfunc(pathname(work));

proc sort data=sashelp.class out=class;
  by sex;
run;

data _null_;
  set class;
  by sex ;
  fv=cats("&path/",sex,'.csv');
  file csv filevar=fv dsd ;
  if first.sex then put "NAME,SEX,AGE,HEIGHT,WEIGHT";
  put (_all_) (+0);
run;

Otherwise create the files with the header rows first then use the MOD option on the FILE statement in your step that writes the data lines.

proc contents data=class noprint out=names(keep=varnum name label);
run;

proc sql;
create tables headers as 
  select distinct a.*,cats("&path/",b.sex,'.csv') as fv 
  from names a 
     , class b
  order by fv, varnum
;
quit;

data _null_;
  set headers;
  file out dsd filevar=fv ;
  put name @ ;
run;

data _null_;
  set class;
  fv=cats("&path/",sex,'.csv');
  file csv filevar=fv dsd mod;
  put (_all_) (+0);
run;

 

Abishekaa
Obsidian | Level 7
This works perfectly to get the column names in my csv file. Thanks so much, Tom!!!

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 2118 views
  • 0 likes
  • 2 in conversation