Advertisement

10.03.2008 at 05:38AM PDT, ID: 23784738 | Points: 500
[x]
Attachment Details

Inputing a File in SAS and then Print it out

Asked by lowkeyy in SAS

Tags:

I want to build a code for SAS that allows me to input a file and then print it out in a specific format.Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
DATA breas.art;
  INFILE '/apps/dataapps15/projects/dinhch/artfile.txt' DELIMITER=',' dsd lrecl=400 pad missover;
    INPUT  	   ICN  				 :$14.
               ICN_VRSN 		 :8.
               DOC_ID        :$15.
               ADJKEY 			 :$8.
               TTL_CHRG 		 :13.2
               PDATE 				 :$8.
               ADJ_TYPE_CD 	 :$2.
               ADJ_RSN_CD 	 :$3.
               UPD_USER 		 :$8.
               TTL_PAID_AMNT :13.2
               FUND_CODE		 :$13.			
               FUND	    		 :$154.;
 
Group by the ADJKEY , count the ICN and sum up the TTL_Paid_amnt
 
Print it out
 
example, the result file would be
ADJKEY	Count	Sum
[+][-]10.04.2008 at 05:20AM PDT, ID: 22640504

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.28.2008 at 04:58AM PDT, ID: 22820681

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11.22.2008 at 11:33AM PST, ID: 23021970

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 - Hierarchy / EE_QW_2_20070628