Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. FatCaptain

    Error handling using macro variables

    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...
  2. FatCaptain

    Sending an email using a SAS data step not executing

    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 =...
  3. FatCaptain

    How to chnage the tabular format

    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...
  4. FatCaptain

    Sending an email using a SAS data step not executing

    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...

Part and Inventory Search

Back
Top