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

    EXPORT Error

    I run the same SAS tables every day to process daily reports. This morning I am receiving an error that I have never seen before: ERROR: Read Access Violation in Task (EXPORT) Exception occurred at (1B00593E) Task Traceback. Can anyone tell me why I received this and how to fix it? I...
  2. JM3482

    Max Of A Specific Field In A Table

    Thanks so much for the information. Yes I would assume it was as SQL database. It is housed in California on a server. In answer to your question about the most recent update, I am looking for the most recent address for the 01 member, but we need to make sure that I pull the most recent...
  3. JM3482

    Max Of A Specific Field In A Table

    I am trying to code to pull the most updated address for our members in a member address table, which consist of over 2 million records. Each member will have multiple records in this table. I need the most updated address. The fields available are of course street, city, state, zip but there...
  4. JM3482

    Appending Tables in SAS

    Thanks, I think I will try the update statement. Sounds interesting.
  5. JM3482

    Dequote Function

    I take data from SAS to an excel spreadsheet. The data goes to the excel spreadsheet with single quotes. I need to remove the single quotes but I am missing something in my dequote statement. I get an error message that states "not enough arguments". My statement appears as...
  6. JM3482

    Date Criteria within a SAS where clause

    I need to add date criteria to a where clause and I am having no luck. Below is what I have created so far. DATA FILE; FORMAT DTE mmddyy8.; DTE=TODAY(); Date1= put(Today()-4, date9.); Date2= put(Today()-7, date9.); RUN; DATA _NULL_; SET FILE; CALL SYMPUT('Newdate'...
  7. JM3482

    Appending Tables in SAS

    thanks, I will give that a try also.
  8. JM3482

    Appending Tables in SAS

    Thanks I will try this.
  9. JM3482

    Appending Tables in SAS

    I need to take three tables that I am creating in a SAS program and append them to one table. I am creating three separate tables from one main table. How do I put the three tables together?
  10. JM3482

    Create Excel Output File from SAS table

    Thanks, that is a bunch of code. I will see what I can do with it.
  11. JM3482

    Create Excel Output File from SAS table

    This sounds very interesting. Please do supply me with code. I will try it. Possibly this will work for my new problem. I have now had to create a template and place the data from my SAS table on this template. That works, but they want me to replace the excel spreadsheet each time I run...
  12. JM3482

    Proc Export

    Thanks. I have tried it both ways and I can't get it to replace the file. I will try again.
  13. JM3482

    Proc Export

    What am i missing in the following statement if I am trying to export a SAS table in excel format and then replace it the next time the program is run. It keeps stopping the replace process. PROC EXPORT DATA=OPR9100.discharged OUTFILE="C:\Data\OPR9100\Discharged Stage Pended...
  14. JM3482

    Create Excel Output File from SAS table

    I need to take a table that I have created in SAS and have it automatically output in excel format. I have already tried this with the ods html file = filename..... and changing it to an .xls file extension, but I need more than just the "Results Viewer". I need for the file to...
  15. JM3482

    Formula For Duplicate Records

    I need a formula that pulls duplicate records based on a patient number field that I use in a table. Below is what I currently pull in Access but need to have it converted over to crystal. In (SELECT [PATIENT_NO] FROM [find duplicates STD STD LOC] As Tmp GROUP BY [PATIENT_NO],[Admit Date]...
  16. JM3482

    I need to create a label for a mont

    I need to create a label for a monthly date range in a report, but I am not using any date parameters or date formulas. I checked out special fields area and did not find anything workable. I would need to show the previous month date from and date to (10/1/2003 - 10/31/2003). I do have...
  17. JM3482

    Crystal Report Design

    How do I add a page header section to a sub-report? I need to add field name labels that will appear on each page of the sub-report.

Part and Inventory Search

Back
Top