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

Hi,

 

Is it possible to export a csv file with only the headers when there's no data to export?

 

For multiple purpose I automatically generate csv files that will be retrieved by other parties. They can only process the csv files when the column headers are always shown. 

 

But now, when for some reason there's no data to export, also the column headers are left out. This causes fail overs at the receiving end.

 

Can someone help me?

 

This is the example of the way I now publish the csv file;

 

Headers.PNG 

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

The order of the statements in your data step is wrong. SAS will stop when the SET statement reads past the end of the data.

The order should look like this.  Then it will write the headers even if the input has 0 observations.

data _null_;
  file ... ;
  if _n_=1 then ... ;
  set ... ;
  put ... ;
run;

View solution in original post

4 REPLIES 4
PeterClemmensen
Tourmaline | Level 20

The %DS2CSV Macro handles this

 

 

/* With observations */
%ds2csv(data=sashelp.class, runmode=b, csvfile=YourPathHere\class.csv);

/* Without Observations */
data NoObsClass;
   set sashelp.class(obs=0);
run;

%ds2csv(data=NoObsClass, runmode=b, csvfile=YourPathHere\NoObsClass.csv);

 

PeterClemmensen
Tourmaline | Level 20

You can read about the macro in the DS2CSV Documentation 

Tom
Super User Tom
Super User

The order of the statements in your data step is wrong. SAS will stop when the SET statement reads past the end of the data.

The order should look like this.  Then it will write the headers even if the input has 0 observations.

data _null_;
  file ... ;
  if _n_=1 then ... ;
  set ... ;
  put ... ;
run;
PWS
Fluorite | Level 6 PWS
Fluorite | Level 6
Thanks! This works!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 4 replies
  • 2680 views
  • 2 likes
  • 3 in conversation