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 bkrike 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: *

  • Users: JM3482
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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'...
  5. 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?
  6. 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...
  7. 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...
  8. 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]...
  9. 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...
  10. 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