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

Is there any way to export a datasets properties to excel?  What I mean by this is that in EG if you right click on a data set, select properties and then the columns tab, SAS displays the Name, Type, Length, Format, etc for that table.  I'm looking for a way to export this exact same data into excel in order to create a type of quick reference/data dictionary.  Is anyone aware if this is possible?

 

Thank you

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

For adhoc applications, you can simply copy/paste the attributes from the Data summary into Excel.

 

For a programming approach, you can output the details in PROC DATASETS and export to Excel using either PROC EXPORT or ODS EXCEL:

 

proc datasets lib=sashelp nolist  ;
  contents data=class out=work.classattr;
quit;

/* requires SAS/ACCESS to PC Files */
proc export data=classattr  
  file="c:\temp\attr.xlsx" 
   dbms=xlsx replace;
run;

/* Base SAS in 9.4m2 or later */
ods excel file="c:\temp\attr_ods.xlsx" ;
  proc print data=classattr; run;
ods excel close;

Chris

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

View solution in original post

4 REPLIES 4
Reeza
Super User

There's a couple of different ways - one is to write a proc contents and export those results to excel.

 

proc contents data=have;run;
ChrisHemedinger
Community Manager

For adhoc applications, you can simply copy/paste the attributes from the Data summary into Excel.

 

For a programming approach, you can output the details in PROC DATASETS and export to Excel using either PROC EXPORT or ODS EXCEL:

 

proc datasets lib=sashelp nolist  ;
  contents data=class out=work.classattr;
quit;

/* requires SAS/ACCESS to PC Files */
proc export data=classattr  
  file="c:\temp\attr.xlsx" 
   dbms=xlsx replace;
run;

/* Base SAS in 9.4m2 or later */
ods excel file="c:\temp\attr_ods.xlsx" ;
  proc print data=classattr; run;
ods excel close;

Chris

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
LinusH
Tourmaline | Level 20

Also, you can get this information from SASHELP.Vxxxx views, which holds inforamtion for all datasets/views available to the SAS session. VSTABLE and VCOLUMN if remember correctly could be of interest.

Data never sleeps
mczeg
Calcite | Level 5

Thanks all for the information

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 8913 views
  • 0 likes
  • 4 in conversation