Hi,
I'm trying to generate a variable in SAS which shows whether the code has run without any errors.
The main body of the code is run on the server using an rsubmit command. The error variable needs to be available locally on my pc.
The code is very simple as it just backs up some SAS...
Thanks for this. I had no idea scripting and executing vbs was possible!
I've had to amend it to make it work for Louts Notes.
The amended code is here should anyone else have need of it.
/*** Create vbs code ***/
data _null_;
file "c:\temp\AutoEmail.vbs";
put 'Set fso =...
Hi,
I don't think that you are going to be able to achieve what you want using SAS.
A couple of points on your stating dataset
1) Each name and score has a separate variable e.g. name1, score1 which prevents them from being grouped together.
2) The data in the table has unique values for the...
Hi,
I'm trying to get SAS to send an email using a data step.
The code I am running is;
FILENAME emtest EMAIL 'me@mycompany' ;
DATA _null_ ;
FILE emtest
SUBJECT= 'SAS Test email' ;
PUT 'Hello,' ;
PUT ' ' ;
PUT 'This is a test email generated using a SAS data step.' ;
RUN ;
This code puts...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.