3

I am very new to SAS and I have some tables in SAS DI under inventory which I need to export to text file, what are the easy to do this? Can I somehow create a program in SAS EG to display the data in there then export?

Kara
  • 6,115
  • 16
  • 50
  • 57
Mixer
  • 183
  • 2
  • 7
  • 15

1 Answers1

2

In SAS Data Integration Studio:

You can either use a File Writer or User Written Code transformations to export the table to a file. If you are using User Written Code just use a proc export Example here and DI Studio documentation here.

In SAS Enterprise Guide:

Navigate in the SAS Folder to where your table is saved and double click to open the table, then you will see in the top right the option to export/send to excel. Or you can write a proc export in a program (file-New- Program)

momo1644
  • 1,769
  • 9
  • 25