Question for the external reference to directory, the following does not work because of the space at "Desktop 2012". How should i correct it when there is a space in the directory name?
filename Saledata 'C:\Users\Jeff\Desktop 2012\sale.txt';
Thank you
Elvin
How about enclosing it with double rather than single quotes?
Normally that syntax should work. It is when you try to use the paths with spaces or other special characters in a operating system command that you need the quotes. Embed double quotes inside the outerquotes.
filename xx '"c:\My Documents\xx.txt"';
You can also use dquotes on the outside (for SAS) so that SAS will resolve macro references. In this cause the internal quotes need to be doubled up so that SAS knows they are not the end of the quote.
filename xx """c:\My Documents\xx.txt""";
You can make it easier to type by using the quote() function.
filename xx %sysfunc(quote("c:\My Documents\xx.txt"));
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.