BookmarkSubscribeRSS Feed
lg2
Calcite | Level 5 lg2
Calcite | Level 5

/* Create dim table report for google sheet */
proc sql;
create table DXCLASS as
select
* put(..xyz)
from
xyz
where
DIAGNOSIS_ID 
;
quit;

 

I have created a dimension table and i have got the results in a table .I want to copy the table to an excel.How to copy my results of the table from sas to an excel,

 

Edit: via @Reeza - to modify the subject line to be more descriptive.

4 REPLIES 4
Reeza
Super User

The term for this is exporting data. 

 

You can use PROC EXPORT or a LIBNAME statement. This was asked recently here:

https://communities.sas.com/t5/Base-SAS-Programming/How-to-Export-sas7bdat-file-into-excel/m-p/46771...

 


@lg2 wrote:

/* Create dim table report for google sheet */
proc sql;
create table DXCLASS as
select
* put(..xyz)
from
xyz
where
DIAGNOSIS_ID 
;
quit;

 

I have created a dimension table and i have got the results in a table .I want to copy the table to an excel.How to copy my results of the table from sas to an excel,


 

SuryaKiran
Meteorite | Level 14

Additionally, In case if your are using SAS Enterprise Guide then you can send your data to excel without any coding required. 

 

image.png

Thanks,
Suryakiran
Reeza
Super User

@SuryaKiran EG, SAS Studio, and Base all have that option, but it’s not saved in your code or as a step in your process so I usually never recommend it, or use it. Having the file path to knowing where the output is and no manual steps is the easiest solution. 

error_prone
Barite | Level 11
In recent version of Enterprise Guide, you can change the default output-format of a program to Excel an use any outputting procedure to create an excel-file (that has to be saved manually). If you need the export always, using proc export or ods excel is recommended.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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