Write a program for format data.*
*Practical No. 05: Write a program for format data.*
DATA employee;
INPUT empid name$ age weight salary;
FORMAT name $ UPCASE9;
DATALINES;
1 Akash 22 64 22000
6 Jaya 55 63 23500
2 Vinita 34 68 33000
7 Kumar 43 64 27000
4 Ankita 29 65 53000
5 Taufik 21 45 32000
8 Boby 32 71 25000
3 Ankita 40 69 42000
;
RUN;
PROC PRINT DATA= employee;
RUN;
Comments
Post a Comment