BookmarkSubscribeRSS Feed
Coding4you
Obsidian | Level 7

Hi All,

 

I was wondering is there a way to proc export a data if the data set name = this (as a pipe delimited txt file) else export as a CSV. 

thank you!

7 REPLIES 7
SASKiwi
PROC Star

An easy way is to set a default parameter on a macro then no conditional logic is required:

%macro MyExport (dataset =
                ,filename =  
                ,DLM = ','
               );
proc export data = &dataset
            file = "\MyFolder\&filename"
DLM = &DLM ; run; %mend MyExport; %MyExport (dataset = MyCSV, filename = \Myfolder\MyCSV.csv); %MyExport (dataset = MyPipe, filename = \Myfolder\MyPipe.csv, DLM = '|');
Coding4you
Obsidian | Level 7
Thank you
Coding4you
Obsidian | Level 7
Thank you
Coding4you
Obsidian | Level 7

Hi Kurt,

 

Can I also ask is there a way to output the file in a txt file if its’s pipe delimited and csv if it’s in comma in that same piece of codes you provided below? 

thank you,

kelvin.

SASKiwi
PROC Star

@Coding4you  - Look at the macro code I posted.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 7 replies
  • 864 views
  • 2 likes
  • 3 in conversation